Averages/Arithmetic mean: Difference between revisions

(→‎{{header|RPL}}: remediated the dc-based version)
Line 1,981:
We could use fold() to write a function that takes an array and calculates the mean.
 
{{works with|langur|0.6.6}}
<syntaxhighlight lang="langur">val .mean = f(.x) fold(f{+}, .x) / len(.x)
 
885

edits