| Server IP : 118.27.122.120 / Your IP : 216.73.216.136 Web Server : Apache System : Linux web0216.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : r4834334 ( 11094) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/proc/thread-self/root/usr/share/perl5/Statistics/Basic/ |
Upload File : |
package Statistics::Basic::StdDev;
use strict;
use warnings;
use Carp;
use base 'Statistics::Basic::_OneVectorBase';
sub new {
my $class = shift;
warn "[new $class]\n" if $Statistics::Basic::DEBUG >= 2;
my $this = bless {}, $class;
my $variance = $this->{V} = eval { Statistics::Basic::Variance->new(@_) } or croak $@;
my $vector = $this->{v} = $variance->query_vector;
my $c = $vector->_get_computer( 'stddev' ); return $c if defined $c;
$vector->_set_computer( stddev => $this );
return $this;
}
sub _recalc {
my $this = shift;
my $first = shift;
delete $this->{recalc_needed};
my $var = $this->{V}->query;
return unless defined $var;
# no need to query filled here, variance does it for us
warn "[recalc " . ref($this) . "] sqrt( $var )\n" if $Statistics::Basic::DEBUG;
$this->{_value} = sqrt( $var );
return;
}
sub query_mean {
my $this = shift;
return $this->{V}->query_mean;
}
1;