Mathematica 潇洒“上下”

发布于 2024-12-03 05:56:58 字数 245 浏览 3 评论 0原文

mathematica 呈现此图的方式是否有任何原因?

ListPlot[
    Table[{x, x*01}, {x, -5, 5, .08}], 
PlotStyle -> White, 
Filling -> 0, 
FillingStyle -> {Dashed, Brown}]

虽然图中零边界上方的部分存在虚线,但图的另一部分具有实心填充。

我做错了什么吗?

Is there any reason that underlies mathematica's way of presenting this graph

ListPlot[
    Table[{x, x*01}, {x, -5, 5, .08}], 
PlotStyle -> White, 
Filling -> 0, 
FillingStyle -> {Dashed, Brown}]

While the dashing is present for the part of the graph above the zero boundary, another part of the graph has the filling that is solid.

Am I doing something wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-12-10 05:56:58

没有错。 Mathematica 将您的填充样式解释为低于零的虚线和高于零的棕色。您只需要另一对大括号,如下所示:

ListPlot[Table[{x, x*01}, {x, -5, 5, .08}], PlotStyle -> White, 
 Filling -> 0, FillingStyle -> {{Dashed, Brown}}]

在此处输入图像描述

希望有所帮助。

Not that wrong. Mathematica is interpreting your filling style as being Dashed below zero and Brown above. You just need another pair of braces, like so:

ListPlot[Table[{x, x*01}, {x, -5, 5, .08}], PlotStyle -> White, 
 Filling -> 0, FillingStyle -> {{Dashed, Brown}}]

enter image description here

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文