sketch the graph of the function: f(x,y)= 1+2x^2+2y^2
29 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm not sure how to plot above equation. Can anyone help me?
0 Commenti
Risposte (2)
Carlos Guerrero García
il 10 Dic 2022
The usage of polar coordinates must be useful:
[rho,theta]=meshgrid(0:0.1:2,0:pi/60:2*pi);
x=rho.*cos(theta);
y=rho.*sin(theta);
z=1+2*x.^2+2*y.^2;
surf(x,y,z);
shading interp;
axis equal % for a nice view
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots 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!