Comparison between two vectors
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Trevor Badji
am 11 Dez. 2017
Kommentiert: Rena Berman
am 26 Dez. 2017
[1;0;1;1;0;1;1;0;1;0]
[0 1 0 0 0 1 1 0 1 1]
I want to compare these two vectors. I want MATLAB to write as a result of it; which means error number of ith element. For example, first elements are different the error is 1, seconds are different error still 1, until 5th elements error is still 1 at the fifth there 4 errors out of 5 therefore 4/5. and it goes on.
[1 1 1 1 0.8 0.66 0.57 0.5 0.44 0.5]
2 Kommentare
Akzeptierte Antwort
Image Analyst
am 11 Dez. 2017
You asked
" [1;0;1;1;0;1;1;0;1;0] [0 1 0 0 0 1 1 0 1 1]
I want to compare these two vectors. I want MATLAB to write as a result of it; which means error number of ith element. For example, first elements are different the error is 1, seconds are different error still 1, until 5th elements error is still 1 at the fifth there 4 errors out of 5 therefore 4/5. and it goes on.
[1 1 1 1 0.8 0.66 0.57 0.5 0.44 0.5]
"
(posted in case you delete your question like you've done before).
Here is how I'd do it:
v1 = [1;0;1;1;0;1;1;0;1;0]
v2 = [0 1 0 0 0 1 1 0 1 1]
c = v1' ~= v2
output = cumsum(c) ./ [1:length(c)]
3 Kommentare
Image Analyst
am 11 Dez. 2017
Sorry, I don't know that language. I have no idea what "* _ Eyvallah KRAAAAL_*" means.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!