IDL:如何在 iplot 中绘制简单的二维图
从示例(创建于 2009 年)中读取,我创建了一个名为 Temperature_vs_current.dat
的 .dat
文件,其中包含 2 列数据。该示例说我应该然后将文件读入 IDL via
IDL> iplot, temperature_vs_darkcurrent.dat
但这返回
% Expression must be a structure in this context: TEMPERATURE_VS_DARKCURRENT.
% Execution halted at: $MAIN$
我应该如何格式化我的输入,这里的错误是什么?这是 IDL 版本 6.0
Reading from an example (created 2009), I have created a .dat
file called temperature_vs_current.dat
with 2 columns of data. The example says I should then read the file into IDL via
IDL> iplot, temperature_vs_darkcurrent.dat
but this returns
% Expression must be a structure in this context: TEMPERATURE_VS_DARKCURRENT.
% Execution halted at: $MAIN$
how should I format my input, and what is the error here? This is IDL Version 6.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(它遵循从 this 和 this。)显然,
iplot
需要数组参数,不是文件,所以你可以尝试这样的事情:这只是一个起点,可能有更方便的方法,我不知道。
(It follows guesswork derived from this and this.) Apparently,
iplot
needs array argument(s), not files, so you could try something like this:This is just a starting point, there might be more convenient ways, I have no idea.