Effacer les filtres
Effacer les filtres

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 vue (au cours des 30 derniers jours)
ash
ash le 10 Oct 2017
Réponse apportée : KSSV le 10 Oct 2017
for plotting surf ,kindly help me for my question.

Réponse acceptée

KSSV
KSSV le 10 Oct 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)

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by