home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Fv_con_com
-
- PARAMETERS _sstmoney, _sstrate, _sstmonths
-
- IF TYPE("_sstmoney") + TYPE("_sstrate") + TYPE("_sstmonths") != "NNN"
- RETURN(-1)
- ENDIF
-
- PRIVATE _ssttime, _sstint
-
- _ssttime = _sstmonths / 12
- _sstint = _sstrate / 100
-
- RETURN(_sstmoney * (2.718281828**(_sstint * _ssttime)))
-
- * End of File