Draw 3D object.write code in 2016a version. Help me,thanks!
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
tran nguyen
am 19 Nov. 2018
Beantwortet: Carlos Guerrero García
am 2 Dez. 2022
z=1-x^2 ,z=0,y=0,y=3
0 Kommentare
Akzeptierte Antwort
KSSV
am 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 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!