Averages/Root mean square: Difference between revisions

Added Io solution
(→‎{{header|PARI/GP}}: add asymptotics)
(Added Io solution)
Line 300:
==={{header|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}}==
Anonymous user