How to compare two elements in an array with not equal operator(~=)?
Mostra commenti meno recenti
for i=2:1:length(R)
if(R(i)==R(i-1))
else
dif=[dif,R(i)];
end
end
dif=[R(1)];
For example if my input is: [ 3 3 3] dif =dif =
3.0000 3.0000
2 Commenti
madhan ravi
il 7 Ott 2018
What’s R ?
Image Analyst
il 7 Ott 2018
Do you mean like
if R(i) ~= R(i-1)
Risposte (0)
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!