Remove a value from a vector if it is only present a single time.
[v]=Remov(v,vl)
vector of values.
value.
Remov removes a value vl from a vector v if it is only present a single time.
v=[1 2 3 4 5];//vector vl=3;//value [v]=Remov(v,vl);//application of Remov vl v v=[1 2 3 4 3 5];//vector vl=3; [v]=Remov(v,vl);//application of Remov vl v