How can I create a graphic which variables are in a cell array?
1 回表示 (過去 30 日間)
古いコメントを表示
How can I create a graphic which variables are in a cell array, with command mesh?
0 件のコメント
回答 (1 件)
Walter Roberson
2018 年 6 月 17 日
You cannot do that without deferencing the cell array, such as in
mesh(MyCell{1}, MyCell{2}, MyCell{3})
2 件のコメント
Walter Roberson
2018 年 6 月 17 日
The above command shows one cell array with three entries in it.
You would get that error message if you called
mesh(Z)
or
mesh(X, Y, Z)
but your Z was not a numeric 2D array, such as if it was a vector or if it was 3D.
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!