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

 Akzeptierte Antwort

darova
darova am 4 Feb. 2021

0 Stimmen

3 Kommentare

SOURABH SANTOSH
SOURABH SANTOSH am 4 Feb. 2021
Sir,can u please provide me a set of example for it
darova
darova am 4 Feb. 2021
please see examples inside the link
SOURABH SANTOSH
SOURABH SANTOSH am 7 Feb. 2021
Thank you darova sir..it works

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

SOURABH SANTOSH
SOURABH SANTOSH am 5 Feb. 2021

0 Stimmen

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

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by