I can’t wrap my head around this output from the Octave terminal:
>> y
y =    
   0.064900   0.195800   0.045100   0.694200
>> z
z =
   0.064900   0.195800   0.045100   0.694200
>> y == z
ans =
   1   1   0   1
>> y(1) == z(1)
ans =  1
>> y(3) == z(3)
ans = 0
How is this possible? They become equal if I copy and paste the values.
