table_sort.pro

来自「basic median filter simulation」· PRO 代码 · 共 29 行

PRO
29
字号
pro table_sort,name,column,name_out;+; NAME:;	TABLE_SORT; PURPOSE:;	Procedure to sort an STSDAS table by the specified column;; CALLING SEQUENCE:;	table_sort, name, column, [ name_out ];; INPUTS:;	name - table name;	column - column to sort on;; OPTIONAL INPUTS:;	name_out - output table name.  If not supplied, input name;		is used.;; HISTORY:;	version 1  D. Lindler  MAY 1989;	Converted to IDL V5.0   W. Landsman   September 1997;-;-----------------------------------------------------------------------	if n_params(0) lt 3 then out_name=name	tab_read,name,tcb,tab,h	tab_sort,column,tcb,tab	tab_write,out_name,tcb,tab,h	end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?