Undefined operator '-' for input arguments of type 'cell'.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
KSSV
le 18 Oct 2017
l = Data{:,total+4};
b = Data{:,total+5};
disp(l-b);
YOu have to access cell's by {}.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Octave dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!