發表文章

目前顯示的是 12月, 2020的文章

許閔為 JavaScript 金融計算

劉任昌2021年1月期末考 現值 利率 期數 金流 終值

第16周WORD貼到網頁+轉成pdf+方程式截圖+EXCEL函數

圖片
利率y(rate) 期數n(nper) 金流m(pmt) 終值f(fv) 參考劉任昌 金融市場講義 天大王學習HTML+CSS+JavaScript程式碼 年化利率 1.2% ,房貸 20 年,每月繳款 20,000 ,問房貸總額?   年化利 1.2% ,房貸 20 年,貸款 $5.000.000 ,問每月繳多少 ? 劉任昌教學影片080 現值 4,265,556 金流 / 利率 *(1-(1+ 利率 )^- 期貨 ) 利率 0.001   期數 240 金流 20000 函數現值 28132.3231 PV( 利率 , 期數 , 金流) 房貸金額 28132 利率 *60000000/(1-(1+ 利率 )^- 期數   -28132 PMT( 利率 , 期數 ,60000000)

第15週

圖片
利率y(rate) 期數n(nper) 金流m(pmt) 終值f(fv) 參考劉任昌 金融市場講義 . 劉任昌學習HTML+CSS+JavaScript程式碼

第14周 程式設計

  VERSION 5.00 Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} UserForm1    Caption          =    " 劉任昌 "    ClientHeight     =    4320    ClientLeft       =    105    ClientTop        =    450    ClientWidth      =    8565.001    OleObjectBlob    =    "UserForm1.frx":0000    StartUpPosition =    1   ' 所屬視窗中央 End Attribute VB_Name = "UserForm1" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False   Dim n As Integer Dim spec As String Const period As Integer = 4 Const maxerror As Double = 0.0000001 Dim payment(period) As Double ' 廣域變數 4 維度的陣列 Private Sub CommandButton1_Click() ...