scr_reset.pro
来自「basic median filter simulation」· PRO 代码 · 共 37 行
PRO
37 行
PRO SCR_RESET, dum;+; NAME:; SCR_RESET; PURPOSE:; To reset the terminal.; CALLING SEQUENCE:; scr_reset; INPUTS:; None.; OUTPUTS:; None.; SIDE EFFECTS:; None.; RESTRICTIONS:; This procedure will only work with DEC compatible equipment (or; terminal emulators).; PROCEDURE:; A string containing the appropriate DEC terminal command is put ; together and printed. NOTE: In general, the DEC commands correspond; to the ANSI escape sequences.; MODIFICATION HISTORY:; Written by Michael R. Greason, STX, May 1990.; Converted to IDL V5.0 W. Landsman September 1997;-; Set up the command string.;scmd = strtrim(27B,2) + 'c';; Issue the command.;fmt = "(A" + strtrim(strlen(scmd),2) + ",$)"print, format=fmt, scmd;RETURNEND
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?