Undefined operator '-' for input arguments of type 'cell'.
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
KSSV
on 18 Oct 2017
l = Data{:,total+4};
b = Data{:,total+5};
disp(l-b);
YOu have to access cell's by {}.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!