0
以下是我的函數來計算貸款支付, 就像在Excel中我需要添加另一個參數,這是付款類型。PMT功能付款方式
function PMT (ir, np, pv, fv) {
/*
ir - interest rate per month
np - number of periods (months)
pv - present value
fv - future value (residual value)
type - 0 or 1 need to implement that
*/
pmt = (ir * (pv * Math.pow ((ir+1), np) + fv))/((ir + 1) * (Math.pow ((ir+1), np) -1));
return pmt;
}
隨着類型= 0,興趣計算1個月,因爲付款被假定爲在一個月的末尾。對於類型= 1,利息計算爲0個月,因爲付款是在月初。
任何人都可以幫助我用這個PaymentType功能修改上述功能。
http://www.techonthenet.com/excel/formulas/pmt.php
在此先感謝
這是javascript代碼,對吧?如果是這樣,請刪除除javascript外的所有標籤。另外,你真正的問題是什麼。 – 2011-03-18 13:08:40
如果這是.Net,則有一種方法(Financial.Pmt)可以爲您計算付款。其中一個論點是如何申請興趣(開始或結束)。 – dbasnett 2011-03-18 23:41:19