コード例 #1
0
ファイル: Mode.php プロジェクト: zeroem/profile-dux
 public function processProfile(Profile $prof)
 {
     parent::processProfile($prof);
     // force recalculation of the mode
     $this->mode = null;
     return $this;
 }
コード例 #2
0
 public function processProfile(Profile $profile)
 {
     parent::processProfile($profile);
     $this->mean->processProfile($profile);
     $this->standardDeviation = null;
 }
コード例 #3
0
ファイル: Median.php プロジェクト: zeroem/profile-dux
 public function processProfile(Profile $prof)
 {
     parent::processProfile($prof);
     // force recalculation of the median
     $this->median = null;
 }