給你個葫蘆,自己去畫吧

來源: 2003-11-16 15:02:00 [舊帖] [給我悄悄話] 本文已被閱讀:

這個函數是自己定義用來計算學習曲線累積指數的:



Public Function sumlearn(factor, units)

' factor: learning percentage, 輸入值
' units: total units 輸入值


i = 1
x = 0

Do While i
x = x + factor ^ (Log(i) / Log(2))
i = i + 1

Loop

sumlearn = x '輸出

End Function




--文學城www.wenxuecity.com--