使用 Python 计算相关
# IRR
import numpy
profile = numpy.irr([10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, 10000, -140000])
print (profile)
print(pow(profile+1, 12) - 1)
1
2
3
4
5
6
2
3
4
5
6
参见:
编辑 (opens new window)
上次更新: 2024-07-15, 03:27:09