numpy.pmt(rate,nper,pv,fv,當=“結束”時):此財務函數可幫助用戶計算每個期間的利率。
參數:
nper: [scalar or (M, )array] total compounding periods
pmt : [scalar or (M, )array] Payment
fv : [scalar or (M, )array] Future value
pv : [scalar or (M, )array] present value
when: at the beginning (when = {‘begin’, 1}) or the end (when = {‘end’, 0}) of each period. Default is {‘end’, 0}返回: Rate of interest per period.
求解方程:
fv + pv*(1+rate)**nper + pmt*(1 + rate*when)/rate*((1 + rate)**nper - 1) == 0
or when rate == 0
fv + pv + pmt * nper == 0
代碼:
# Python program explaining
# rate() function
import numpy as np
# nper pmt pv fv
Solution = np.rate(6, 10000, 500, 200)
print("Solution= rate ", Solution)
輸出:
Solution= rate -2.024705182882783
相關用法
注:本文由純淨天空篩選整理自Mohit Gupta_OMG 大神的英文原創作品 numpy.rate() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。