Array size mismatch cellfun
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
RoboKid
el 11 de Nov. de 2013
Comentada: RoboKid
el 11 de Nov. de 2013
Help me.
D = {[1 2],[1 1] ;[1 6 ],[5 2]}
L=[1 0 0 0; 0 1 0 0 ];
out=cellfun(@(x) x*L,D,'un',0)
In result:
size(D)=(2,2) ,size(L)=(2,4) , size(out)=(2,2) Why the size(out) is not equal to (2,4),as by matrix multiplication
0 comentarios
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 11 de Nov. de 2013
out is going to be a cell array. Each of its locations is going to have a 2 x 4 array. The 2 x 2 corresponds to the shape of the cell array D, 2 x 2, not to the size of the contents of D.
2 comentarios
Ver también
Categorías
Más información sobre Cell Arrays 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!