Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -1,3 +1,9 @@
|
|||
Arithmetic Mean : 5.5
|
||||
Geometric Mean : 4.52873
|
||||
Harmonic Mean : 3.41417
|
||||
/numbers {[1 10] 1 range}.
|
||||
/recip {1 exch div}.
|
||||
|
||||
% Arithmetic mean
|
||||
numbers dup 0 {+} fold exch length div
|
||||
% Geometric mean
|
||||
numbers dup 1 {*} fold exch length recip exp
|
||||
% Harmonic mean
|
||||
numbers dup 0 {recip +} fold exch length exch div
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue