DASHRATH
Followers: 0 Following: 0
Feeds
已回答
How to plot 3D surface using surf [y*(3x^2+y^2)] / (x^2+y^2)^2 ?
[X,Y] = meshgrid(1:0.5:10,1:20); Z = (Y .* ((3*(X.^2) + Y.^2) ) ./ ((X.^2 + Y.^2).^2)); surf(X,Y,Z)
How to plot 3D surface using surf [y*(3x^2+y^2)] / (x^2+y^2)^2 ?
[X,Y] = meshgrid(1:0.5:10,1:20); Z = (Y .* ((3*(X.^2) + Y.^2) ) ./ ((X.^2 + Y.^2).^2)); surf(X,Y,Z)
2 years 前 | 0