home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST141.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  247 b   |  14 lines

  1. *******************
  2.  
  3. FUNCTION Dep_rate
  4.  
  5.    PARAMETERS _cval, _orig, _numb
  6.  
  7.    * _cval = current value
  8.    * _orig = original price
  9.    * _numb = number of years
  10.  
  11.    RETURN( (1 - ( _cval / _orig) ** (1 / _numb )) * 100 )
  12.  
  13. * End of File
  14.