Returns the future value of an investment.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Fv(
double rate,
int nper,
double pmt,
double pv,
FinancePeriod period
)
Public Shared Function Fv (
rate As Double,
nper As Integer,
pmt As Double,
pv As Double,
period As FinancePeriod
) As Double
public:
static double Fv(
double rate,
int nper,
double pmt,
double pv,
FinancePeriod period
)
static member Fv :
rate : float *
nper : int *
pmt : float *
pv : float *
period : FinancePeriod -> float
Parameters
- rate
- Type: SystemDouble
A double which specifies the interest rate.
- nper
- Type: SystemInt32
A int which specifies the total number of payment periods.
- pmt
- Type: SystemDouble
A double which specifies the payment made in each period.
- pv
- Type: SystemDouble
A double which specifies the present value.
- period
- Type: Imsl.FinanceFinancePeriod
A int which specifies the time in each period when the payment
is made (either AtEnd or
AtBeginning).
Return Value
Type:
Double
A
double which specifies the future value of an investment.
Remarks
The future value is the value, at some time in the future, of a
current amount and a stream of payments. It can be found by solving
the following:
If
,
If
,
See Also