Plot Surface when Z is not a function of X and Y
6 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone.
I am trying to plot my data in 3D surface. However, it currently does not work since my X,Y, and Z are independent. Z is not F(X,Y). I also try to use meshgrid but still does not work. The reason that I want to plot surface because my scatter plot points are trade-off. Thus, if i can show it in surface, it will be easier to interpolate my trade-off. Do I have any other ways to use surf function?
Thank you very much.
0 件のコメント
回答 (1 件)
Image Analyst
2015 年 1 月 17 日
What relationship is there between z and x and y? What is z? Is it a 2D matrix? Is it a vector? Is it a volumetric array, like a CT or MRI image?
11 件のコメント
Torsten
2016 年 8 月 26 日
t=0:0.01:2;
x=0:0.01:1;
surf(x,t,u1array);
does not work for u1array being 201x101 ?
That's surprising.
Best wishes
Torsten.
参考
カテゴリ
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!