Draw 3D object.write code in 2016a version. Help me,thanks!
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
tran nguyen
le 19 Nov 2018
Réponse apportée : Carlos Guerrero García
le 2 Déc 2022
z=1-x^2 ,z=0,y=0,y=3
0 commentaires
Réponse acceptée
KSSV
le 19 Nov 2018
x = linspace(0,3) ;
y = linspace(0,3) ;
[X,Y] = meshgrid(x,y) ;
Z = 1-X.^2 ;
surf(X,Y,Z)
shading interp
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!