Azzera filtri
Azzera filtri

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 visualizzazione (ultimi 30 giorni)
for plotting surf ,kindly help me for my question.

Risposta accettata

KSSV
KSSV il 10 Ott 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)

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by