我使用numpy库通过IRR函数进行简单的irr计算。例如,如果我想要找到现金流的IRR,我会执行以下操作
In [16]:
import numpy as np
cf = np.array([-100,10,10,100])
print np.irr(a)
0.0688601791248但是,我正在寻找一种永远做NPV的方法。我的现金流是-100,10....
以前有人这么做过吗?
发布于 2012-09-27 14:12:18
PV of a perpetuity is simple
PV=C/i
Where C = amount of cash flows
i = effective periodic interest rate or rate of return https://stackoverflow.com/questions/12614844
复制相似问题