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

1 visualización (últimos 30 días)
Kim Lopez
Kim Lopez el 18 de Oct. de 2017
Respondida: KSSV el 18 de Oct. de 2017
Having this error. I just want to subtract the data in my cell.
l = Data(:,total+4);
b = Data(:,total+5);
disp(l-b);

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Octave en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by