how create an array 33x2000?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Carlos Batista
am 6 Nov. 2014
Kommentiert: Carlos Batista
am 6 Nov. 2014
hello users!
Sorry to ask, but I wonder how do I create an array with dimensions 33X2000?
0 Kommentare
Akzeptierte Antwort
James Tursa
am 6 Nov. 2014
Bearbeitet: James Tursa
am 6 Nov. 2014
A = zeros(33,2000);
A = ones(33,2000);
A = nan(33,2000);
etc.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu NetCDF finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!