Example #1
0
 public function processProfile(Profile $prof)
 {
     parent::processProfile($prof);
     // force recalculation of the mode
     $this->mode = null;
     return $this;
 }
Example #2
0
 public function processProfile(Profile $profile)
 {
     parent::processProfile($profile);
     $this->mean->processProfile($profile);
     $this->standardDeviation = null;
 }
Example #3
0
 public function processProfile(Profile $prof)
 {
     parent::processProfile($prof);
     // force recalculation of the median
     $this->median = null;
 }