Insert zero columns in matrices inside a cell array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Melody Lyu
el 11 de Feb. de 2020
Comentada: Melody Lyu
el 11 de Feb. de 2020
I have matrices inside the 23x1 cell that looks like this:
30x28 double
30x28 double
30x30 double
30x29 double
30x30 double
...
How do I add columns with zero at the end of the matrices so make all all of them 30x30?
0 comentarios
Respuesta aceptada
Stephen23
el 11 de Feb. de 2020
Where C is your cell array:
for k = 1:numel(C)
C{k}(:,end+1:30) = 0;
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!