“IDL”的版本间差异

来自Shiyin's note
跳到导航 跳到搜索
无编辑摘要
无编辑摘要
 
(未显示5个用户的16个中间版本)
第1行: 第1行:
[[画图]]
[[IDL的安装]]


[[字符操作]]
[[变量]]

[[时间格式的处理]]


[[数组]]
[[数组]]


[[结构]]
[[IDL中的系统变量|系统变量]]


[[IDL中的文件处理|文件处理]]
[[Fortran程序调用]]

[[画图]]


[[astro_lib]]
[[程序]]


[[IDL中的文件操作]]
[[IDL中的函数]]


[[library]]
[[文件输入输出]]


[[My IDL program]]
[[格式文件读写]]


==小技巧==
[[format格式符]]
*@ ;batch 模式


*查看license 使用情况
[[动画和gif文件制作]]
lmstat -a -c
===How to run IDL applications in batch mode===
#create and compile your IDL application in the binary SAVE file format. For documentation on how to do this, use idlman command and look under Programmer's Guides > Building IDL Applications > Application Programming > Creating SAVE Files of Programs and Data
#. create a script as follows:
#!/bin/sh
# This script launches the IDL runtime application "myapp.sav"
IDL_DIR=/usr/local/rsi/idl
idl -rt=/path/to/myapp/myapp.sav

2017年3月30日 (四) 08:58的最新版本

IDL的安装

变量

数组

结构

文件处理

画图

程序

IDL中的函数

library

My IDL program

小技巧

  • @ ;batch 模式
  • 查看license 使用情况
lmstat -a -c

How to run IDL applications in batch mode

  1. create and compile your IDL application in the binary SAVE file format. For documentation on how to do this, use idlman command and look under Programmer's Guides > Building IDL Applications > Application Programming > Creating SAVE Files of Programs and Data
  2. . create a script as follows:
#!/bin/sh
# This script launches the IDL runtime application "myapp.sav"
IDL_DIR=/usr/local/rsi/idl
idl -rt=/path/to/myapp/myapp.sav