我想在python代码中运行一个IDL脚本,因为我需要稍后在python脚本中分析IDL代码的结果,但我不知道它是如何工作的。 我想在python代码中调用此IDL脚本:
pro plotgaussian, center, sigma, X=x, Y=y
x = findgen(1000) / 999; numbers running 0 to 1 in steps of 0.001
x = x * 6 * sigma - 3 * sigma; widen x to range over 6 sigma
x = x + center; center the x range on the bell curve center
arg = ((x – center)/sigma)^2
y = exp(-arg)
plot, x, y
end
我怎么能这样做?
答案 0 :(得分:3)
最新版本的IDL(8.5)本身支持这一功能,它们提供了自己的双向桥接器,用于从IDL调用Python,以及从Python调用IDL。他们的文档在这里: http://www.exelisvis.com/docs/pythontoidl.html
他们的文档中的一些示例代码:
>>> from idlpy import IDL
>>> arr = IDL.findgen(100)/50*3.14159
>>> x = 50*IDL.sin(arr)
>>> y = 50*IDL.cos(arr)
>>> m = IDL.map(test=1)
% Compiled module: MAP.
>>> p = IDL.plot(x - 90, y, 'r-o2', overplot=1)
% Compiled module: PLOT.
>>> p = IDL.plot(x + 90, y, 'b-o2', overplot=1)
>>> m.save('map.png', resolution=96, border=0, transparent=1)
答案 1 :(得分:0)
试试pyIDL。谷歌为它,我不知道最新版本的存在。它似乎相当陈旧,您可能需要做一些工作才能从numarray转换为NumPy。
答案 2 :(得分:0)
最近维护的比pyIDL
似乎是pIDLy
。我没有尝试过(我不是IDL用户)。