Returns the interest payment for an investment for a given period.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Ipmt(
double rate,
int period,
int nper,
double pv,
double fv,
FinancePeriod time
)
Public Shared Function Ipmt (
rate As Double,
period As Integer,
nper As Integer,
pv As Double,
fv As Double,
time As FinancePeriod
) As Double
public:
static double Ipmt(
double rate,
int period,
int nper,
double pv,
double fv,
FinancePeriod time
)
static member Ipmt :
rate : float *
period : int *
nper : int *
pv : float *
fv : float *
time : FinancePeriod -> float
Parameters
- rate
- Type: SystemDouble
A double which specifies the interest rate.
- period
- Type: SystemInt32
A int which specifies the payment period.
- 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.
- time
- Type: Imsl.FinanceFinancePeriod
The time of a 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 is computed using the following:
See Also