Averages/Arithmetic mean: Difference between revisions

Content added Content deleted
No edit summary
(→‎min: update)
Line 2,221: Line 2,221:
=={{header|min}}==
=={{header|min}}==
Returns <code>nan</code> for an empty quotation.
Returns <code>nan</code> for an empty quotation.
{{works with|min|0.19.3}}
{{works with|min|0.37.0}}
<syntaxhighlight lang="min">(((0 (+) reduce) (size /)) cleave) :mean
<syntaxhighlight lang="min">(2 3 5) avg puts!</syntaxhighlight>
(2 3 5) mean print</syntaxhighlight>
{{out}}
{{out}}
<pre>3.333333333333333</pre>
<pre>
3.333333333333334
</pre>


=={{header|MiniScript}}==
=={{header|MiniScript}}==