在 IDL 中用科学记数法绘图

发布于 2024-11-26 02:11:17 字数 65 浏览 2 评论 0原文

我想知道在使用 IDL 的绘图包绘制图表时是否可以(以及如何)以科学计数法绘制数字(例如 4e2 而不是 400)。

I would like to know if it is possible ( and how to ) plot numbers in scientific notation (e.g. 4e2 instead of 400) while plotting diagrams with IDL's plot package.

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

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

发布评论

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

评论(1

埋葬我深情 2024-12-03 02:11:17

您可以使用 IDL 的标准格式代码和 [XY]TICKFORMAT 关键字指定刻度值的格式。例如,要指定 x 轴值的科学记数法,请使用以下命令:

IDL> plot, findgen(10000), xtickformat='(E7.1)'

You can specify a format for tick values using IDL's standard formatting codes and the [XY]TICKFORMAT keywords. For example, to specify scientific notation for the x axis values, use the following:

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