本文整理汇总了Python中numpy.nper方法的典型用法代码示例。如果您正苦于以下问题:Python numpy.nper方法的具体用法?Python numpy.nper怎么用?Python numpy.nper使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类numpy
的用法示例。
在下文中一共展示了numpy.nper方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_broadcast
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def test_broadcast(self):
assert_almost_equal(np.nper(0.075, -2000, 0, 100000., [0, 1]),
[21.5449442, 20.76156441], 4)
assert_almost_equal(np.ipmt(0.1 / 12, list(range(5)), 24, 2000),
[-17.29165168, -16.66666667, -16.03647345,
-15.40102862, -14.76028842], 4)
assert_almost_equal(np.ppmt(0.1 / 12, list(range(5)), 24, 2000),
[-74.998201, -75.62318601, -76.25337923,
-76.88882405, -77.52956425], 4)
assert_almost_equal(np.ppmt(0.1 / 12, list(range(5)), 24, 2000, 0,
[0, 0, 1, 'end', 'begin']),
[-74.998201, -75.62318601, -75.62318601,
-76.88882405, -76.88882405], 4)
示例2: test_broadcast
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def test_broadcast(self):
assert_almost_equal(np.nper(0.075, -2000, 0, 100000., [0, 1]),
[21.5449442, 20.76156441], 4)
assert_almost_equal(np.ipmt(0.1/12, list(range(5)), 24, 2000),
[-17.29165168, -16.66666667, -16.03647345,
-15.40102862, -14.76028842], 4)
assert_almost_equal(np.ppmt(0.1/12, list(range(5)), 24, 2000),
[-74.998201, -75.62318601, -76.25337923,
-76.88882405, -77.52956425], 4)
assert_almost_equal(np.ppmt(0.1/12, list(range(5)), 24, 2000, 0,
[0, 0, 1, 'end', 'begin']),
[-74.998201, -75.62318601, -75.62318601,
-76.88882405, -76.88882405], 4)
示例3: test_broadcast
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def test_broadcast(self):
assert_almost_equal(np.nper(0.075, -2000, 0, 100000., [0, 1]),
[ 21.5449442, 20.76156441], 4)
assert_almost_equal(np.ipmt(0.1/12, list(range(5)), 24, 2000),
[-17.29165168, -16.66666667, -16.03647345,
-15.40102862, -14.76028842], 4)
assert_almost_equal(np.ppmt(0.1/12, list(range(5)), 24, 2000),
[-74.998201, -75.62318601, -76.25337923,
-76.88882405, -77.52956425], 4)
assert_almost_equal(np.ppmt(0.1/12, list(range(5)), 24, 2000, 0,
[0, 0, 1, 'end', 'begin']),
[-74.998201, -75.62318601, -75.62318601,
-76.88882405, -76.88882405], 4)
示例4: test_nper
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def test_nper(self):
assert_almost_equal(np.nper(0.075, -2000, 0, 100000.),
21.54, 2)
示例5: test_nper2
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def test_nper2(self):
assert_almost_equal(np.nper(0.0, -2000, 0, 100000.),
50.0, 1)
示例6: _fv_dispatcher
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def _fv_dispatcher(rate, nper, pmt, pv, when=None):
return (rate, nper, pmt, pv)
示例7: _pmt_dispatcher
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def _pmt_dispatcher(rate, nper, pv, fv=None, when=None):
return (rate, nper, pv, fv)
示例8: _ppmt_dispatcher
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def _ppmt_dispatcher(rate, per, nper, pv, fv=None, when=None):
return (rate, per, nper, pv, fv)
示例9: ppmt
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def ppmt(rate, per, nper, pv, fv=0, when='end'):
"""
Compute the payment against loan principal.
Parameters
----------
rate : array_like
Rate of interest (per period)
per : array_like, int
Amount paid against the loan changes. The `per` is the period of
interest.
nper : array_like
Number of compounding periods
pv : array_like
Present value
fv : array_like, optional
Future value
when : {{'begin', 1}, {'end', 0}}, {string, int}
When payments are due ('begin' (1) or 'end' (0))
See Also
--------
pmt, pv, ipmt
"""
total = pmt(rate, nper, pv, fv, when)
return total - ipmt(rate, per, nper, pv, fv, when)
示例10: _pv_dispatcher
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def _pv_dispatcher(rate, nper, pmt, fv=None, when=None):
return (rate, nper, nper, pv, fv)
示例11: _rate_dispatcher
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def _rate_dispatcher(nper, pmt, pv, fv, when=None, guess=None, tol=None,
maxiter=None):
return (nper, pmt, pv, fv)
# Use Newton's iteration until the change is less than 1e-6
# for all values or a maximum of 100 iterations is reached.
# Newton's rule is
# r_{n+1} = r_{n} - g(r_n)/g'(r_n)
# where
# g(r) is the formula
# g'(r) is the derivative with respect to r.
示例12: ppmt
# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import nper [as 别名]
def ppmt(rate, per, nper, pv, fv=0.0, when='end'):
"""
Compute the payment against loan principal.
Parameters
----------
rate : array_like
Rate of interest (per period)
per : array_like, int
Amount paid against the loan changes. The `per` is the period of
interest.
nper : array_like
Number of compounding periods
pv : array_like
Present value
fv : array_like, optional
Future value
when : {{'begin', 1}, {'end', 0}}, {string, int}
When payments are due ('begin' (1) or 'end' (0))
See Also
--------
pmt, pv, ipmt
"""
total = pmt(rate, nper, pv, fv, when)
return total - ipmt(rate, per, nper, pv, fv, when)