Mathematica 中的混合比例坐标和普通坐标?

发布于 2024-08-05 21:06:17 字数 117 浏览 4 评论 0原文

是否可以根据一个方向上的缩放坐标指定位置,并使用绘图上另一方向上的数据点的普通坐标?换句话说,我想指定一个位置,其中 x 坐标是普通坐标,如果绘图范围更改,则绘图中的位置也会改变,但 y 坐标是缩放坐标,并且相对于阴谋。

Is it possible to specify a position in terms of Scaled coordinates in one direction and use the ordinary coordinates from my data points in the other direction on the plot? In other words, I want to specify a position, where the x coordinate is an ordinary coordinate and will change position in the plot if the plot range is changed, but the y coordinate is Scaled coordinate and will remain at a fixed height relative to the plot.

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

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

发布评论

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

评论(1

差↓一点笑了 2024-08-12 21:06:17

来得有点晚了,但这就是您要找的吗?

data = {{1, 0.5}, {2, 0.7}, {3, 0.4}, {4, 0.2}};
Graphics[
  Line[data /. {x_, y_} :> Scaled[{0, y}, {x, 0}]],
  Axes -> True,
  PlotRange -> {Automatic, {0, 100}},
  AspectRatio -> Full
]

It is a bit late in coming, but is this what you are looking for?

data = {{1, 0.5}, {2, 0.7}, {3, 0.4}, {4, 0.2}};
Graphics[
  Line[data /. {x_, y_} :> Scaled[{0, y}, {x, 0}]],
  Axes -> True,
  PlotRange -> {Automatic, {0, 100}},
  AspectRatio -> Full
]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文