- 18 10月, 2022 1 次提交
-
-
由 雪洛 提交于
-
- 10 8月, 2022 1 次提交
-
-
由 雪洛 提交于
-
- 19 7月, 2022 1 次提交
-
-
由 techsoar 提交于
In的示例代码内容错误: In的原示例代码为: #### 示例代码 db.command.aggregate.ln 聚合操作符。计算给定数字在自然对数值。 语法如下: db.command.aggregate.ln(<number>) <number> 可以是任意解析为非负数字的表达式。 ln 等价于 log([<number>, Math.E]),其中 Math.E 是 JavaScript 获取 e 的值的方法。 改为 #### 示例代码 假设集合 curve 有如下记录: ``` { _id: 1, x: 1 } { _id: 2, x: 2 } { _id: 3, x: 3 } ``` 计算 log2(x) 的值: ``` javascript const $ = db.command.aggregate let res = await db.collection('curve').aggregate() .project({ log: $.ln('$x') }) .end() ``` 返回结果如下: ``` { _id: 1, ln: 0 } { _id: 2, ln: 0.6931471805599453 } { _id: 3, ln: 1.0986122886681098 } ```
-
- 03 6月, 2022 1 次提交
-
-
由 雪洛 提交于
-
- 02 6月, 2022 1 次提交
-
-
由 yuelingxing 提交于
-
- 27 5月, 2022 3 次提交
-
-
由 qq_42164615 提交于
-
由 qq_42164615 提交于
-
由 qq_42164615 提交于
-
- 02 3月, 2022 1 次提交
-
-
由 DCloud_LXH 提交于
-