Could anyone help me to solve the error undefined operator

조회 수: 1 (최근 30일)
jaah navi
jaah navi 2021년 6월 20일
편집: Jonas 2021년 6월 20일
Undefined operator '==' for input arguments of type 'cell'.
Error in five (line 32)
acc = sum(YPred == YTest)./numel(YTest);

답변 (1개)

Jonas
Jonas 2021년 6월 20일
편집: Jonas 2021년 6월 20일
YPred and/or YTest are cells which can contain any kind of data, also tables, graphical objects. for that reason there is no operator for the cell. it you want to compare the content of the cell and it contains e.g. a matrix, you can use cell2mat on your variables in the formular or use suitable brackets (e.g. YPred{:} )
  댓글 수: 2
jaah navi
jaah navi 2021년 6월 20일
Could you help me how the formula acc = sum(YPred == YTest)./numel(YTest) can be written.
I tried with acc = sum(YPred{:}, YTest{:})./numel(YTest) and getting error again.
Jonas
Jonas 2021년 6월 20일
편집: Jonas 2021년 6월 20일
sum(YPred{:}==YTest{:})/ numel(YTest{:})
should work, you forget the comparison operator ;) and it then has to be numel(YTest{:})

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

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by