Is it possible to skip data points in a 3D mesh plot?

1 view (last 30 days)
[x,y] = ndgrid(-100:100,-100:100);
z = y.*x;
mesh(x,y,z);
z(find(z)>=6e3) = 0;
I want the mesh plot to skip all values above 6e3. Because on the xy plane points I plan to skip represent curves. I am not able to use 2D plot method to index x or y.
Is it possible?
Thanks,

Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!