Info
This question is closed. Reopen it to edit or answer.
Draw 3D object. code this in 2016a version.help!
1 view (last 30 days)
Show older comments
Answers (2)
madhan ravi
on 22 Dec 2018
[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 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!