zero padding column of data
Ältere Kommentare anzeigen
How do I extend an existing matrix (200x1 double) with a specific number of zeros? i.e. pad the end of the column
Antworten (3)
Perry Robertson
am 24 Jul. 2015
James Tursa
am 24 Jul. 2015
n = number of elements to pad with 0's
x = your 200 x 1 double array
x(end+1:end+n) = 0;
Star Strider
am 24 Jul. 2015
Probably the easiest way:
v = rand(200, 1); % Original Vector
Nz = 10; % Number Of Zeros To Pad
v = [v; zeros(Nz,1)]; % Zero-Padded Vector
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!