Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
need syntax
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
need syntax for zero padding
0 Commenti
Risposte (1)
Wayne King
il 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 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!