Analyse the difference between two vectors.
[bool]=DiffVectors(v1,v2)
vector.
boolean.
DiffVectors compares two vectors v1 and v2. If they are equal, bool is %F. Else bool rates %T.
v1=[1:5]; v2=[1:4 6]; [b1]=DiffVectors(v1,v1);//application of DiffVectors v1 b1 [b2]=DiffVectors(v1,v2);//application of DiffVectors v1 v2 b2