$tanh(聚合)
$tanh
以弧度为单位返回数值的双曲正切值。
$tanh
通过以下语法实现:{ $tanh: <expression> } $tanh
接受解析为数字(以弧度为单位)的任何有效表达式。 如果表达式返回以度为单位的值,请使用$degreesToRadians
操作符将该值转换为弧度。默认情况下,
$tanh
以double
形式返回值。 如果<expression>
解析为128位十进制值,$tanh
还可以返回128位十进制值。有关表达式的更多信息,请参阅表达式运算符。
行为
null
、NaN
和+/- Infinity
如果输入参数解析为null
值或引用了缺失的字段,则$tanh
返回null
。 如果参数解析为NaN
,则$tanh
返回NaN
。 如果参数解析为负数或正数Infinity
,则$tanh
分别返回-1
或1
。
例子 | 结果 |
---|---|
{ $tanh: NaN } | NaN |
{ $tanh: null } | null |
{ $tanh: -Infinity } | -1 |
{ $tanh: Infinity } | 1 |
例子
trigonometry
以下collection包含一个文档,其中存储了一个以度数为单位的angle
值:
db.trigonometry.insertOne( { "_id" : ObjectId( "5c50782193f833234ba90d45" ), "angle" : NumberDecimal( "53.1301023541559787031443874490659" ) } )
以下聚合操作使用$tanh
表达式计算angle
的双曲正切,并使用$addFields
管道阶段将其添加到输入文档:
db.trigonometry.aggregate( [ { $addFields : { "tanh_output" : { $tanh : { $degreesToRadians : "$angle" } } } } ] )
$degreesToRadians
表达式将以度为单位的angle
转换为弧度。
示例输出:
{ "_id" : ObjectId("5c50782193f833234ba90d45"), "angle" : NumberDecimal("53.1301023541559787031443874490659"), "tanh_output" : NumberDecimal("0.7293303448445332820512777329448416") }
以下trigonometry
集合包含一个文档,其中存储了以弧度为单位的angle
值:
db.trigonometry.insertOne( { "_id" : ObjectId( "5c50782193f833234ba90d55" ), "angle" : NumberDecimal( "1.6301023541559787031443874490659" ) } )
以下聚合操作使用$tanh
表达式计算angle
的双曲正切,并使用$addFields
管道阶段将其添加到输入文档:
db.trigonometry.aggregate( [ { $addFields : { "tanh_output" : { $tanh : "$angle" } } } ] )
示例输出:
{ "_id" : ObjectId("5c50782193f833234ba90d55"), "angle" : NumberDecimal("1.6301023541559787031443874490659"), "tanh_output" : NumberDecimal("0.9260761562750713360156803177935379") }