發表文章

目前顯示的是 5月, 2026的文章

楊鈺萱 JAVASCRIPT計算機ONE PAGE

JavaScript 簡易計算機 C / * - 7 8 9 + 4 5 6 √ 1 2 3 xʸ 0 . =

楊鈺萱w3schools.com/excel/excel_functions.php  

https://www.w3schools.com/excel/excel_functions.php Function Description =AND Returns TRUE or FALSE based on two or more conditions =AVERAGE Calculates the average (arithmetic mean) =AVERAGEIF Calculates the average of a range based on a TRUE or FALSE condition =AVERAGEIFS Calculates the average of a range based on one or more TRUE/FALSE conditions =CONCAT Links together the content of multiple cells =COUNT Counts cells with numbers in a range =COUNTA Counts all cells in a range that has values, both numbers and letters =COUNTBLANK Counts blank cells in a range =COUNTIF Counts cells as specified =COUNTIFS Counts cells in a range based on one or more TRUE or FALSE condition =IF Returns values based on a TRUE or FALSE condition =IFS Returns values based on one or more TRUE or FALSE conditions =LEFT Returns values from the left side of a cell =LOWER Reformats content to lowercase =MAX Returns the highest value in a range =MEDIAN Returns the middle value in the data =MIN Returns the lowe...

'楊鈺萱JAVASCRIPT計算三期內部報酬率INPUT輸入且CANVAS繪製現金流圖

圖片
三期 IRR 計算與繪圖 三期內部報酬率 (IRR) 計算器 初期投入 (T0): 第一期現金流 (T1): 第二期現金流 (T2): 第三期現金流 (T3): 計算並繪圖 SCRIPT代表JAVASCRIPI程式語言 EXCEL圖形

小芋Javascript財務內部報酬率計算四期現金流量圖形input

四期 IRR 計算器 四期現金流量 IRR 計算 初始投資 (CF0, 負數): 第一期現金流 (CF1): 第二期現金流 (CF2): 第三期現金流 (CF3): 第四期現金流 (CF4): 計算 IRR

楊鈺萱Javascript財務內部報酬率計算四期現金流量圖形介

/** * 計算 IRR (Newton's method) * @param {Array} cashFlows - 現金流量陣列 (如 [-1000, 300, 400, 500, 200]) * @returns {number} IRR */ function calculateIRR(cashFlows) { let r = 0.1; // 初始猜測值 10% const maxIterations = 100; const precision = 1e-7; for (let i = 0; i