Averages/Root mean square: Difference between revisions

Content added Content deleted
(→‎{{header|PARI/GP}}: add asymptotics)
(Added Io solution)
Line 300: Line 300:
==={{header|Unicon}}===
==={{header|Unicon}}===
This Icon solution works in Unicon.
This Icon solution works in Unicon.

=={{header|Io}}==
<lang Io>rms := method (figs, (figs map(** 2) reduce(+) / figs size) sqrt)

rms( Range 1 to(10) asList ) println</lang>


=={{header|J}}==
=={{header|J}}==