Could anyone help me to solve the error undefined operator
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Undefined operator '==' for input arguments of type 'cell'.
Error in five (line 32)
acc = sum(YPred == YTest)./numel(YTest);
0 Kommentare
Antworten (1)
Jonas
am 20 Jun. 2021
Bearbeitet: Jonas
am 20 Jun. 2021
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{:} )
Siehe auch
Kategorien
Mehr zu Logical 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!