Padding zeros to Existing Data

1 view (last 30 days)
When my loaded data is a 86x14 Matrix I would like to model it to be a 90x14 where the 4 newly added rows are all zeros.. Is this possible? Without tampering with the 86x14 data.
I just need to fill them up so that an error does not pop up when my other computations go on...

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 5 Feb 2014
Edited: Azzi Abdelmalek on 5 Feb 2014
A=rand(86,14) % Example
A(end+1:90,:)=0

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!