2d function in 3d
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
felix jose chavez torres
el 25 de En. de 2018
Comentada: Star Strider
el 26 de En. de 2018
i need to show this function y = x^2 in 3d in matlab
0 comentarios
Respuesta aceptada
Star Strider
el 26 de En. de 2018
Editada: Star Strider
el 26 de En. de 2018
Try this:
x = [1;1] * linspace(-4, 4, 25) ;
y = x.^2;
figure(1)
surf(x, y, [zeros(size(x(1,:))); 5*ones(size(x(1,:)))], 'EdgeColor','b')
grid on
view(-75, 45)
EDIT — Added plot.
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!