Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Draw 3D object. code this in 2016a version.help!
조회 수: 1 (최근 30일)
이전 댓글 표시
답변 (2개)
madhan ravi
2018년 12월 22일
[x y] = meshgrid(-1:0.1:1); % Generate x and y data
z = 1-x.^2; % Generate z data
surf(x, y, z) % Plot the surface
hold on
[x y] = meshgrid(-1:0.1:1);
z = zeros(size(x, 1));
surf(x, y, z)
[x z] = meshgrid(-1:0.1:1);
y = zeros(size(x, 1));
surf(x, y, z)
[x z] = meshgrid(-1:0.1:1);
y = 3*ones(size(x, 1));
surf(x, y, z)
xlabel('x')
ylabel('y')
zlabel('z')
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!