How to Plot a 3D Ecuation
9 views (last 30 days)
Show older comments
Hi, I would like to plot this example equation:

R is an integer more than 0. Which plot function should I use?
This equation should be a Cylinder.
0 Comments
Answers (1)
Mike Garrity
on 1 Oct 2014
Edited: Mike Garrity
on 1 Oct 2014
It might not seem obvious, but the function is isosurface. You've got a function defined in a 3D space and you're looking for the surface where that's equal to a constant. That surface is called an "isosurface". It's like the 3D analogue of a contour in 2D.
Here's an example:
[y,x,z] = ndgrid(linspace(-5,5,64));
f = (y-z).^2+(z-x).^2+(x-y).^2;
r = 1;
isosurface(x,y,z,f,3*r^2)
r = 2;
isosurface(x,y,z,f,3*r^2)
r = 3;
isosurface(x,y,z,f,3*r^2)
0 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!