Logo

Programming-Idioms

History of Idiom 203 > diff from v2 to v3

Edit summary for version 3 by daxim:
New Perl implementation by user [daxim]

Version 2

2019-09-28, 21:30:19

Version 3

2019-09-29, 11:52:41

Idiom #203 Calculate mean and standarddeviation

Calaculate m, the mean and s, the standard deviation of data, an array of floating point values.

Idiom #203 Calculate mean and standarddeviation

Calaculate m, the mean and s, the standard deviation of data, an array of floating point values.

Imports
use Statistics::Lite qw(mean stddev);
Code
my $m = mean @data;
my $s = stddev @data;
Doc URL
http://p3rl.org/Statistics::Lite