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

  1. *******************
  2.  
  3. FUNCTION Dep_amount
  4.  
  5.    PARAMETERS _orig, _drate, _yrs
  6.  
  7.    * _orig  = original price
  8.    * _drate = depreciation rate
  9.    * _yrs   = years
  10.  
  11.    PRIVATE _dt, _dp, _qaz
  12.  
  13.    _drate = _drate / 100
  14.    _dt = 0                  && will contain the remaining amount!
  15.  
  16.    FOR _qaz = 1 TO _yrs
  17.       _dp = _drate * _orig * (1 - _drate) ** (_qaz - 1)
  18.       _dt = _dt + _dp
  19.    NEXT
  20.    RETURN(_dp)
  21.  
  22. * End of File
  23.  
  24.  
  25.