How to create matrices from a meshgrid function
6 ビュー (過去 30 日間)
古いコメントを表示
'The scatter3 plot needs vectors, not matrices, but you can do that easily enough by using meshgrid to create the matrices and then creating vectors from them as RA(:), DEC(:) and A(:).'
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 6 月 23 日
編集済み: Azzi Abdelmalek
2015 年 6 月 23 日
a=1:0.1:10
b=1:0.1:10
[A,B]=meshgrid(a,b)
C=sin(A).*cos(B) % Example
scatter3(A(:),B(:),C(:))
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!