read me.txt
上传用户:fhbfhb000
上传日期:2021-04-03
资源大小:15k
文件大小:2k
源码类别:

状态条

开发平台:

IDL

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