I need to compare 2 elements of a array as following
V=([-180.0 -117.0; -67.5 -111.0], [-117.0 -36.0; -111.0 -244.5])
when I use the following condition
if (V[1][:,2] != V[2][:,1])
It gets true. But V[1][:,2] = [-117.0;-111.0]
and V[2][:,1] = [-117.0;-111.0]
so They
are equal and the condition should be false.
would you please help me that why it replies like this?
thanks