我想在Python代碼中運行IDL腳本,因爲我需要稍後在python腳本中分析IDL代碼的結果,但我不知道它是如何工作的。 我想打電話給例如該IDL腳本在Python代碼:在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
我怎麼能這樣做呢?
請提供你嘗試過什麼已經有一些例子。 – BartoszKP