Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
How can I do this by using matlab command or a code line.

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by