Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
need syntax
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
need syntax for zero padding
0 commentaires
Réponses (1)
Wayne King
le 19 Mar 2012
One way
x = ones(10,1);
x = [x ; zeros(10,1)];
Another way:
x = ones(10,1);
y = zeros(10,1);
x = vertcat(x,y);
0 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!