Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经用两个输入参数定义了我自己的函数(称之为 z(x,y) 说)并设法生成了一个等高线图。我现在想做的是对区域进行阴影处理,例如 z > 5。主要问题是 z 太复杂而无法自己推断出对 x,y 的限制。有什么简单的方法可以做到这一点吗?
您是否尝试使用 NaN?
z(condition) = nan;
在调用 contour() 之前,条件可以是 z、x、y 的任意组合,生成二进制矩阵,例如:
z(abs(z) > x - y) = nan;