stdDevPop() public méthode

The arguments can be any expression as long as it resolves to an array.
See also: https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevPop/
Since: 1.3
public stdDevPop ( mixed | self $expression1 )
$expression1 mixed | self
Exemple #1
0
 /**
  * Calculates the population standard deviation of the input values.
  *
  * The argument can be any expression as long as it resolves to an array.
  *
  * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevPop/
  * @see Expr::stdDevPop
  * @param mixed|Expr $expression
  * @return self
  *
  * @since 1.3
  */
 public function stdDevPop($expression)
 {
     $this->expr->stdDevPop($expression);
     return $this;
 }