Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

need syntax

1 visualizzazione (ultimi 30 giorni)
shriya
shriya il 19 Mar 2012
Chiuso: MATLAB Answer Bot il 20 Ago 2021
need syntax for zero padding

Risposte (1)

Wayne King
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);

Questa domanda è chiusa.

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by