給你個葫蘆,自己去畫吧

本帖於 2004-02-06 15:24:48 時間, 由普通用戶 old-cotton 編輯

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



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--
請您先登陸,再發跟帖!