Undefined operator '-' for input arguments of type 'cell'.
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
KSSV
2017 年 10 月 18 日
l = Data{:,total+4};
b = Data{:,total+5};
disp(l-b);
YOu have to access cell's by {}.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!