Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
problem with assigning with cell arrays
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ed = cell(1, lc); lc>1
N=A*Ed';
A=[1*6 double]
Ed must be [1*6 double].
for example :
Ed: 1*2 cell= [45*6 double] [45*6 double]
what should I do with these 2 cell??
0 comentarios
Respuestas (1)
Orion
el 15 de Dic. de 2014
Ed is a cell, you can't operate any mathematical operation on it, only on the elements inside it.
i guess you want to do something like
N1=A*(Ed{1})'; % operation on the 1st element
N2=A*(Ed{2})'; % operation on the 2nd element
4 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!