我有一个复杂的2D numpy数组,我想将其保存为tiff文件,以将其导入IDL。
什么是最好的方法?
谢谢!
答案 0 :(得分:0)
可能是您使用软件包pIDLy(https://github.com/anthonyjsmith/pIDLy)从numpy直接保存.sav文件(IDL格式)的原因。
对我来说,它像这样工作:
#starting IDL
idl = pidly.IDL()
#save the file with the save method of idle
idl.pro('save',variable,FILENAME=name_file)
#clossing IDL session
idl.close()