mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-08 13:28:39 +00:00
Semicolon bug fix
This commit is contained in:
parent
5185b52c91
commit
e97bd27eb0
|
|
@ -146,7 +146,7 @@ class MeasureOfDispersion
|
||||||
throw new ZeroDevisionException();
|
throw new ZeroDevisionException();
|
||||||
}
|
}
|
||||||
|
|
||||||
$mean = $hasProbability ? Average::weightedAverage($values, $probabilities) : (isset($mean) ? $mean : Average::arithmeticMean($values););
|
$mean = $hasProbability ? Average::weightedAverage($values, $probabilities) : (isset($mean) ? $mean : Average::arithmeticMean($values));
|
||||||
$sum = 0;
|
$sum = 0;
|
||||||
|
|
||||||
foreach ($values as $key => $value) {
|
foreach ($values as $key => $value) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user