How do I do this?
显示 更早的评论
Plot region bounded above by the paraboloid z = x2 + y2 and below by the triangle enclosed by the lines y = x, x=0, and x + y =2,
6 个评论
Walter Roberson
2021-2-9
Symbolic toolbox and piecewise() and fsurf()
JIANGWEN DONG
2021-2-9
[x,y] = meshgrid(linspace(-2,2));
z = x.^2+y.^2;
z(x + y > 2) = nan;
mesh(x,y,z)
Except you would insert more statements setting selected z locations to nan.
JIANGWEN DONG
2021-2-9
Walter Roberson
2021-2-9
you would insert more statements similar to
z(x + y > 2) = nan;
JIANGWEN DONG
2021-2-9
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
