$sin (aggregation)
On this page
Definition
$sinNew in version 4.2.
Returns the sine of a value that is measured in radians.
$sinhas the following syntax:{ $sin: <expression> }$sintakes any valid expression that resolves to a number. If the expression returns a value in degrees, use the$degreesToRadiansoperator to convert the result to radians.By default
$sinreturns values as adouble.$sincan also return values as a 128-bit decimal as long as the<expression>resolves to a 128-bit decimal value.For more information on expressions, see Expressions.
Behavior
null, NaN, and +/- Infinity
If the argument resolves to a value of null or refers to a field that is missing, $sin returns null. If the argument resolves to NaN, $sin returns NaN. If the argument resolves to negative or positive infinity, $sin throws an error.
| Example | Results |
|---|---|
{ $sin: NaN } | NaN |
{ $sin: null } | null |
{ $sin : Infinity}or { $sin : -Infinity }
| Throws an error message resembling the following formatted output:
"errmsg" : "Failed to optimize pipeline :: caused by :: cannot apply $sin to -inf, value must in (-inf,inf)" |