2d function in 3d
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
felix jose chavez torres
il 25 Gen 2018
Commentato: Star Strider
il 26 Gen 2018
i need to show this function y = x^2 in 3d in matlab
0 Commenti
Risposta accettata
Star Strider
il 26 Gen 2018
Modificato: Star Strider
il 26 Gen 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 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!