如何用Matlab画该函数图像?

f(x,y)=sqrt(x^2+y^2) 谢谢
2025-01-05 16:29:34
推荐回答(4个)
回答1:

x=-4:0.1:4;
y=-4:0.1:4;
[X,Y]=meshgrid(x,y);
Z=sqrt(X.^2+Y.^2);
mesh(X,Y,Z)

回答2:

x=-10:0.1:10;
y=-10:0.1:10;
z=sqrt(x.^2+y.^2);
plot3(x,y,z)

回答3:

回答4: