Сайт / Site:
https://sheet.best
Документация / Documentation:
https://docs.sheet.best/#welcome
@AutoHotKey
#Service #API
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1
v1 / v2:
nums := [20.4, 18.0, 1.4, -8.6, -14.4, 3.0, -38.8, 20.9, -4.2, 131.0, -43.2, 4.6]
msgbox Round((StandardDeviation(nums)/100), 2)
StandardDeviation(arr) {
mean := sd2 := 0
for val in arr
mean += val
mean /= arr.Length
for val in arr
sd2 += (val - mean) ** 2
return sqrt(sd2 / arr.Length)
}
Источник / Source:
https://www.autohotkey.com/boards/viewtopic.php?p=560434#p560434
@AutoHotKey
#Script
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1