$tan (aggregation)

On this page本页内容

$tan

New in version 4.2.在版本4.2中新增

Returns the tangent of a value that is measured in radians.返回以弧度度量的值的正切。

$tan has the following syntax:语法如下:

{ $tan: <expression> }

$tan takes any valid expression that resolves to a number. 接受解析为数字的任何有效表达式If the expression returns a value in degrees, use the $degreesToRadians operator to convert the result to radians.如果表达式返回以度为单位的值,请使用$degreesToRadians运算符将结果转换为弧度。

By default $tan returns values as a double. 默认情况下,$tandouble形式返回值$tan can also return values as a 128-bit decimal as long as the <expression> resolves to a 128-bit decimal value.只要<expression>解析为128位十进制值,$tan也可以返回128位十进位的值。

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, $tan returns null. 如果参数解析为null值或引用缺少的字段,$tan将返回nullIf the argument resolves to NaN, $tan returns NaN. 如果参数解析为NaN,则$tan返回NaNIf the argument resolves to negative or positive infinity, $tan throws an error.如果参数解析为负或正无穷大,$tan将抛出错误。

Example示例Results结果
{ $tan: NaN }NaN
{ $tan: null }null

{ $tan : Infinity}

or

{ $tan : -Infinity }

Throws an error message resembling the following formatted output:引发类似以下格式化输出的错误消息:

"errmsg" :
  "Failed to optimize pipeline :: caused by :: cannot
  apply $tan to -inf, value must in (-inf,inf)"

Example示例

The trigonometry collection contains a document that stores one side and one angle in a right-angle triangle:trigonometry集合包含一个文档,该文档将一条边和一个角度存储在直角三角形中:

{
  "_id" : ObjectId("5c50782193f833234ba90d85"),
  "angle_a" : NumberDecimal("53.13010235415597870314438744090659"),
  "side_a" : NumberDecimal("3")
}

The following aggregation operation uses the $tan expression to calculate the side opposite to angle_a and add it to the input document using the $addFields pipeline stage.以下聚合操作使用$tan表达式计算angle_a的反面,并使用$addFields管道阶段将其添加到输入文档中。

db.trigonometry.aggregate([
  {
    $addFields : {
      "side_b" : {
        $multiply : [
          { $tan : {$degreesToRadians : "$angle_a"} },
          "$side_a"
        ]
      }
    }
  }
])

The $degreesToRadians expression converts the degree value of angle_a to the equivalent value in radians.$degreesToRadians表达式将angle_a的度数值转换为以弧度为单位的等效值。

The command returns the following output:该命令返回以下输出:

{
  "_id" : ObjectId("5c50782193f833234ba90d85"),
  "angle_a" : NumberDecimal("53.13010235415597870314438744090659"),
  "side_a" : NumberDecimal("3")
  "side_b" : NumberDecimal(4.000000000000000000000000000000000")
}

Since angle_a and side_a are stored as 128-bit decimals, the output of $tan is a 128-bit decimal.由于angle_aside_a存储为128位十进制,因此$tan的输出是128位十进制。

The trigonometry collection contains a document that stores the hypotenuse and one angle in a right-angle triangle:trigonometry集合包含一个文档,该文档将斜边和一个角度存储在直角三角形中:

{
  "_id" : ObjectId("5c50782193f833234ba90d85"),
  "angle_a" : NumberDecimal("0.9272952180016122324285124629224288"),
  "side_a" : NumberDecimal("3")
}

The following aggregation operation uses the $tan expression to calculate the side adjacent to angle_a and add it to the input document using the $addFields pipeline stage.以下聚合操作使用$tan表达式计算与angle_a相邻的边,并使用$addFields管道阶段将其添加到输入文档中。

db.trigonometry.aggregate([
  {
    $addFields : {
      "side_b" : {
        $multiply : [
          { $tan : "$angle_a" },
          "$side_a"
        ]
      }
    }
  }
])

The command returns the following output:该命令返回以下输出:

{
  "_id" : ObjectId("5c50782193f833234ba90d85"),
  "angle_a" : NumberDecimal("0.9272952180016122324285124629224288"),
  "side_a" : NumberDecimal("3")
  "side_b" : NumberDecimal("3.999999999999999999999999999999999")
}

Since angle_a and side_a are stored as 128-bit decimals, the output of $tan is a 128-bit decimal.由于angle_aside_a存储为128位十进制,因此$tan的输出是128位十进制。

←  $switch (aggregation)$tanh (aggregation) →