| FinanceIrr Method (Double) |
Returns the internal rate of return for a schedule of cash flows.
Namespace: Imsl.FinanceAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic static double Irr(
double[] pmt
)
Public Shared Function Irr (
pmt As Double()
) As Double
public:
static double Irr(
array<double>^ pmt
)
static member Irr :
pmt : float[] -> float
Parameters
- pmt
- Type: SystemDouble
A double array which contains cash flow values which occur at
regular intervals.
Return Value
Type:
Double
A
double which specifies the internal rate of return.
Remarks
It is found by solving the following:
where
= the
cash flow,
is the internal rate of return.
See Also