古いコメントを表示
[x,y]=meshgrid(-6:1:6)
z=x*y
Is not giving the function z=x*y, anybody come across this issues pls?
採用された回答
その他の回答 (1 件)
Laura Proctor
2011 年 6 月 22 日
Or, you could use matrix multiplication with vectors:
x = -6:6;
z = x'*x
カテゴリ
ヘルプ センター および 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!