how create an array 33x2000?

hello users!
Sorry to ask, but I wonder how do I create an array with dimensions 33X2000?

 Accepted Answer

James Tursa
James Tursa on 6 Nov 2014
Edited: James Tursa on 6 Nov 2014
A = zeros(33,2000);
A = ones(33,2000);
A = nan(33,2000);
etc.

1 Comment

Thanks, James Tursa!
I am new user in matlbat and am generating some output in netcdf. I made the array to allocate my data! I hope that this step occurs alright !!
Thanks! Carlos

Sign in to comment.

More Answers (0)

Products

Tags

Community Treasure Hunt

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

Start Hunting!