Undefined operator '-' for input arguments of type 'cell'.

1 回表示 (過去 30 日間)
Kim Lopez
Kim Lopez 2017 年 10 月 18 日
回答済み: KSSV 2017 年 10 月 18 日
Having this error. I just want to subtract the data in my cell.
l = Data(:,total+4);
b = Data(:,total+5);
disp(l-b);

採用された回答

KSSV
KSSV 2017 年 10 月 18 日
l = Data{:,total+4};
b = Data{:,total+5};
disp(l-b);
YOu have to access cell's by {}.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeModeling についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by