Click or drag to resize
FinanceFvschedule Method
Returns the future value of an initial principal taking into consideration a schedule of compound interest rates.

Namespace: Imsl.Finance
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static double Fvschedule(
	double principal,
	double[] schedule
)

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:

\sum\limits_{i = 1}^{\it count} {\left( 
            {{\it principal} \times {\it schedule}_i } \right)}

where {\it schedule}_i = interest rate at the i-th period.

See Also