Undefined operator '-' for input arguments of type 'cell'.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
KSSV
il 18 Ott 2017
l = Data{:,total+4};
b = Data{:,total+5};
disp(l-b);
YOu have to access cell's by {}.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Octave in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!