필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
tran nguyen
tran nguyen 2018년 11월 19일
답변: Carlos Guerrero García 2022년 12월 2일
z=1-x^2 ,z=0,y=0,y=3

채택된 답변

KSSV
KSSV 2018년 11월 19일
x = linspace(0,3) ;
y = linspace(0,3) ;
[X,Y] = meshgrid(x,y) ;
Z = 1-X.^2 ;
surf(X,Y,Z)
shading interp

추가 답변 (1개)

Carlos Guerrero García
Carlos Guerrero García 2022년 12월 2일

카테고리

Help CenterFile Exchange에서 Construction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by