Need Help this assigment
1 回表示 (過去 30 日間)
古いコメントを表示
GMDP.Ploc{1}(:,:,1)=repmat([0 1],4,1); Can anyone explain this ?
0 件のコメント
採用された回答
sloppydisk
2018 年 5 月 23 日
GMDP is a struct
GMDP.Ploc is a field of GMDP
GMDP.Ploc{1} is a cell containing a 3D array
GMDP.Ploc{1}(:,:,1) is the first 2D slice along the third dimension
repmat([0 1],4,1) repeats the array [0 1] 4 times along the first dimension and once along the second dimension.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!