Plotting in 3d
8 views (last 30 days)
Show older comments
How do I plot z=1/sqrt(x^2+y^2) in Matlab?
0 Comments
Answers (2)
Alexander
on 31 Jul 2020
x = 1:0.1:10;
y = 1:0.1:10;
[X,Y] = meshgrid(x,y);
Z=1./sqrt(X.^2+Y.^2);
imagesc(x,y,Z)
4 Comments
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!