Filter löschen
Filter löschen

for α=0.2, β=0.5 >>> z= 27.5, for α=0.5, β=0.8 >>> z=17.0 , for α=0.2, β=0.8 >>>z=18.6,i want to get 3-D plot between α,β and Z without writting equation for Z.

1 Ansicht (letzte 30 Tage)
for plotting surf ,kindly help me for my question.

Akzeptierte Antwort

KSSV
KSSV am 10 Okt. 2017
a = [0.2 0.5 0.2] ;
b = [0.5 0.8 0.8] ;
z = [27.5 17. 18.6] ;
[A,B] = meshgrid(a,b) ;
F = scatteredInterpolant(a',b',z') ;
Z = F(A,B) ;
surf(A,B,Z)

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help 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