Returns the future value of an initial principal taking into
consideration a schedule of compound interest rates.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Fvschedule(
double principal,
double[] schedule
)
Public Shared Function Fvschedule (
principal As Double,
schedule As Double()
) As Double
public:
static double Fvschedule(
double principal,
array<double>^ schedule
)
static member Fvschedule :
principal : float *
schedule : float[] -> float
Parameters
- principal
- Type: SystemDouble
A double which specifies the present value.
- schedule
- Type: SystemDouble
A double array of interest rates to apply.
Return Value
Type:
Double
A
double which specifies the future value of an initial
principal
Remarks
It is computed using the following:
where
interest rate at the
i-th period.
See Also