how create an array 33x2000?
1 view (last 30 days)
Show older comments
Carlos Batista
on 6 Nov 2014
Commented: Carlos Batista
on 6 Nov 2014
hello users!
Sorry to ask, but I wonder how do I create an array with dimensions 33X2000?
0 Comments
Accepted Answer
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.
More Answers (0)
See Also
Categories
Find more on NetCDF in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!