I have a matix of 117 by 4. I need to make it 160 by 4 by adding 43 rows of zeros.

1 次查看(过去 30 天)
How can I do this by using matlab command or a code line.

采纳的回答

Star Strider
Star Strider 2018-11-9
Try this:
M = rand(117,4); % Create Matrix
M = [M; zeros(43,4)]; % Add ‘zeros’

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by