I have a matix of 117 by 4. I need to make it 160 by 4 by adding 43 rows of zeros.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sajid Sarwar
el 9 de Nov. de 2018
Respondida: Star Strider
el 9 de Nov. de 2018
How can I do this by using matlab command or a code line.
0 comentarios
Respuesta aceptada
Star Strider
el 9 de Nov. de 2018
Try this:
M = rand(117,4); % Create Matrix
M = [M; zeros(43,4)]; % Add ‘zeros’
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!