RegionFunction
的文档指出:
但是,RegionFunction
的文档中未提及ListLinePlot
。
尝试使用它:
因此,这似乎是一个文档问题。有任何想法吗?
最佳答案
我认为这是一个错误,在文档中。但是,在RegionFunction
中支持List(Line)Plot
将是一项不错的功能。 (请发送电子邮件至[email protected]。)
一种解决方法是用None
替换“超出范围”的点:
ListLinePlot[
Function[{w, y}, If[y < 0.5, {w, y}, None]] @@@
Table[{x, Sin[x]}, {x, 0, 2 Pi, 0.1}]]
关于wolfram-mathematica - Mathematica : ListLinePlot & RegionFunction - a bug or a documentation issue?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6166637/