| FinancePeriodicPayment Method |
Returns the periodic payment for an investment.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double PeriodicPayment(
double rate,
int nper,
double pv,
double fv,
FinancePeriod period
)
Public Shared Function PeriodicPayment (
rate As Double,
nper As Integer,
pv As Double,
fv As Double,
period As FinancePeriod
) As Double
public:
static double PeriodicPayment(
double rate,
int nper,
double pv,
double fv,
FinancePeriod period
)
static member PeriodicPayment :
rate : float *
nper : int *
pv : float *
fv : 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 periods.
- pv
- Type: SystemDouble
A double which specifies the present value.
- fv
- Type: SystemDouble
A double which specifies the future 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 interest payment for a given
period for an investment.
Remarks
It can be found by solving the following:
If
,
If
,
See Also