當前位置: 首頁>>代碼示例>>Python>>正文


Python numpy.nper方法代碼示例

本文整理匯總了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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:18,代碼來源:test_financial.py

示例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) 
開發者ID:ryfeus,項目名稱:lambda-packs,代碼行數:18,代碼來源:test_financial.py

示例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) 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:18,代碼來源:test_financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:5,代碼來源:test_financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:5,代碼來源:test_financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:4,代碼來源:financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:4,代碼來源:financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:4,代碼來源:financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:29,代碼來源:financial.py

示例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) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:4,代碼來源:financial.py

示例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. 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:14,代碼來源:financial.py

示例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) 
開發者ID:ryfeus,項目名稱:lambda-packs,代碼行數:29,代碼來源:financial.py


注:本文中的numpy.nper方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。