diff options
Diffstat (limited to 'numpy/lib/financial.py')
-rw-r--r-- | numpy/lib/financial.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/financial.py b/numpy/lib/financial.py index 55ed2839e..861892b63 100644 --- a/numpy/lib/financial.py +++ b/numpy/lib/financial.py @@ -655,4 +655,3 @@ def mirr(values, finance_rate, reinvest_rate): numer = np.abs(npv(reinvest_rate, values*pos))*(1 + reinvest_rate) denom = np.abs(npv(finance_rate, values*neg))*(1 + finance_rate) return (numer/denom)**(1.0/(n - 1))*(1 + reinvest_rate) - 1 - |