如何绘制自定义函数的等高线?
我有一个自定义函数,它根据两个给定的输入返回 0
或 1
:
function val = myFunction(val1, val2)
% logic to determine if val=1 or val=0
end
How can I create acontourplot of the function over the x,y< /code> 由以下网格生成的坐标?
meshgrid(0:.5:3, 0:.5:3);
该图将仅显示函数在等高线图上的 0
或 1
位置。
I have a custom function which returns either 0
or 1
depending on two given inputs:
function val = myFunction(val1, val2)
% logic to determine if val=1 or val=0
end
How can I create a contour plot of the function over the x,y
coordinates generated by the following meshgrid?
meshgrid(0:.5:3, 0:.5:3);
This plot will just simply display where the function is 0
or 1
on the contour map.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的函数
myFunction
未设计用于处理矩阵输入,那么您可以使用函数 ARRAYFUN 将其应用于x
和y
的所有相应条目:然后您可以使用函数 CONTOUR 为上述数据生成等高线图。由于您的
z
数据只有 2 个不同的值,因此您可能只绘制一个等高线级别(其值为 0.5,位于两个值之间的中间)是有意义的。您可能还想使用函数 CONTOURF,它会产生颜色 -填充轮廓将清楚地显示 1 和 0 的位置:注意:由于您绘制的数据只有 1 和 0,因此绘制等值线可能不是可视化数据的最佳方式。我会使用类似函数 IMAGESC 的函数,如下
所示 :请注意,该图中的 y 轴将相对于 CONTOURF< 生成的图反转/a>.
If your function
myFunction
is not designed to handle matrix inputs, then you can use the function ARRAYFUN to apply it to all the corresponding entries ofx
andy
:Then you could use the function CONTOUR to generate a contour plot for the above data. Since your
z
data only has 2 different values, it would probably make sense for you to only plot one contour level (which would be at a value of 0.5, halfway between your two values). You might also want to instead use the function CONTOURF, which produces color-filled contours that will clearly show where the ones and zeroes are:NOTE: Since you are plotting data that only has ones and zeroes, plotting contours may not be the best way to visualize it. I would instead use something like the function IMAGESC, like so:
Keep in mind the y-axis in this plot will be reversed relative to the plot generated by CONTOURF.
以下将做到这一点:
The following will do it: