Undefined operator '-' for input arguments of type 'cell'.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Having this error. I just want to subtract the data in my cell.
l = Data(:,total+4);
b = Data(:,total+5);
disp(l-b);
0 Kommentare
Akzeptierte Antwort
KSSV
am 18 Okt. 2017
l = Data{:,total+4};
b = Data{:,total+5};
disp(l-b);
YOu have to access cell's by {}.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!