How do i create a 1D array that has 100 rows, 100 columns and 3 layers?
4 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
KSSV
2016 年 9 月 6 日
It will be 3D matrix not an array... You can make the above said dimensions matrix using:
rows = 100 ;
columns = 100 ;
layers = 3 ;
data = rand(rows,columns,layers) ;
An array would be simply a row matrix/vector or a column matrix/ vector.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!