Draw 3D object.write code in 2016a version. Help me,thanks!

2 visualizaciones (últimos 30 días)
z=1-x^2 ,z=0,y=0,y=3

Respuesta aceptada

KSSV
KSSV el 19 de Nov. de 2018
x = linspace(0,3) ;
y = linspace(0,3) ;
[X,Y] = meshgrid(x,y) ;
Z = 1-X.^2 ;
surf(X,Y,Z)
shading interp

Más respuestas (1)

Carlos Guerrero García
Carlos Guerrero García el 2 de Dic. de 2022

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by