Undefined operator '-' for input arguments of type 'cell'.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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);
0 comentarios
Respuesta aceptada
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 {}.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Octave en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!