how create an array 33x2000?
1 回表示 (過去 30 日間)
古いコメントを表示
hello users!
Sorry to ask, but I wonder how do I create an array with dimensions 33X2000?
0 件のコメント
採用された回答
James Tursa
2014 年 11 月 6 日
編集済み: James Tursa
2014 年 11 月 6 日
A = zeros(33,2000);
A = ones(33,2000);
A = nan(33,2000);
etc.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で NetCDF についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!