[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

KL
KL 2017년 12월 11일
You have to rephrase your question with a better example.
Rena Berman
Rena Berman 2017년 12월 26일
(Answers Dev) Restored edit

댓글을 달려면 로그인하십시오.

 채택된 답변

Image Analyst
Image Analyst 2017년 12월 11일

0 개 추천

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

Trevor Badji
Trevor Badji 2017년 12월 11일
  • _ Eyvallah KRAAAAL_*
Image Analyst
Image Analyst 2017년 12월 11일
Sorry, I don't know that language. I have no idea what "* _ Eyvallah KRAAAAL_*" means.
Trevor Badji
Trevor Badji 2017년 12월 11일
It means thank you very much king :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2017년 12월 11일

댓글:

2017년 12월 26일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by