how create an array 33x2000?

3 views (last 30 days)
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
Carlos Batista
Carlos Batista on 6 Nov 2014
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)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!