read me.txt
上传用户:fhbfhb000
上传日期:2021-04-03
资源大小:15k
文件大小:2k
- 在进行数据处理时,经常要设计运行时间很长的程序,这样运行起来往往让人没有底。这是IDL进度条程序,调用非常简单,只要在循环体内加一调语句调用本函数即可实现。
- 将文件'idl_progress_bar.sav'拷贝到相应的ID目录下运行下面的程序即可看到运行效果。
- ;README
- ;This function is used to display a progress of ratio percent for complex calculation in an IDL program
- ;
- ;How to use it? do as following
- ;
- ;yy=idl_progress_bar(min,min,max,idl_progress_yy=yy,label_string=label_string)
- ;for kk=min:max
- ; ..........
- ; ..........
- ;yy=idl_progress_bar(kk+1,min,max+1,idl_progress_yy=yy,label_string=label_string)
- ;endfor
- ;you can read the example program "idl_progress_bar_example" for detail
- ;Programed by: FangXueLi
- ;Email:fangxueli@163.com
- ;Mobilephone:13055175005
- ;2002-8-5
- 应用实例:
- pro idl_progress_bar_example
- restore,'idl_progress_bar.sav'
- k_min = 0
- k_max = 100
- for k=k_min,k_max do begin
- wait, 0.1 ;program delay
- yy = idl_progress_bar(k, k_min, k_max,idl_progress_yy = yy $
- , label_string = '进程已完成:' $
- , idl_progress_position = [0,0] $ ;进度条显示在屏幕的位置([0,0],是右下角,默认值为[0,0])
- , LeftTimeDisplay = 1 $ ;显示剩余时间
- , ZebraLineDisplay = 1) ;是否用斑马线显示
- endfor
- end
- 注意:
- 一定要设的关键词idl_progress_yy ,而且idl_progress_yy 的值必须与函数idll_progress_bar的返回值一致。
- 可选择的关键词:
- idl_progress_position = [0,0] , LeftTimeDisplay = 1 , ZebraLineDisplay 分别是我后来添加的关键词,大家可以通过修改看不同的运行效果,
- idl_progress_position ,进度条显示在屏幕的位置([0,0],是右下角,默认值为[0,0])
- LeftTimeDisplay ,显示剩余时间
- ZebraLineDisplay ,是否用斑马线显示