I had 28 sample (x,y,z) value. i want to 3d surface plot. how can i do that?

 采纳的回答

darova
darova 2021-2-4

0 个投票

3 个评论

Sir,can u please provide me a set of example for it
please see examples inside the link
Thank you darova sir..it works

请先登录,再进行评论。

更多回答(1 个)

SOURABH SANTOSH
SOURABH SANTOSH 2021-2-5

0 个投票

q=[0 1 2]
q =
0 1 2
w=[4 5]
w =
4 5
[Q,W]=meshgrid(q,w)
Q =
0 1 2
0 1 2
W =
4 4 4
5 5 5
z=[1 2 3 4 5 6]
z =
1 2 3 4 5 6
Z=reshape(z,2,3)
Z =
1 3 5
2 4 6
surf(X,Y,Z)
Error using surf (line 71)
Data dimensions must agree.
please suggest what to do

类别

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by