plotting an implicitly defined function in 3 dimensions
Show older comments
I'm looking to graph the function x + y + z = 4 in three dimensions but am having difficulty. The code I used is as follows: [x,y,z] = meshgrid( linspace( -100, 100, 200 ) ); f = x + y + z; isosurface(x, y, z, f, 4) and a result is produced, but it's not what I'm looking for. Any advice?
Accepted Answer
More Answers (0)
Categories
Find more on 2-D and 3-D 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!