Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/thread-self/root/usr/share/perl5/Statistics/Basic/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/root/usr/share/perl5/Statistics/Basic/StdDev.pm
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;

Hry