juruo-c commented on code in PR #3209:
URL: https://github.com/apache/doris-website/pull/3209#discussion_r2640194442
##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/scalar-functions/array-functions/array-cross-product.md:
##########
@@ -0,0 +1,41 @@
+---
+{
+ "title": "CROSS_PRODUCT",
+ "language": "zh-CN"
+}
+---
+
+## 描述
+
+计算两个三维向量的叉积
+
+## 语法
+
+```sql
+CROSS_PRODUCT(<array1>, <array2>)
+```
+
+## 参数
+
+| 参数 | 说明 |
+| -- |--|
+| `<array1>` |
第一个向量,输入数组的子类型支持:TINYINT、SMALLINT、INT、BIGINT、LARGEINT、FLOAT、DOUBLE,元素数量需与
array2 保持一致,数组本身与数组元素均不允许为NULL|
+| `<array2>` |
第二个向量,输入数组的子类型支持:TINYINT、SMALLINT、INT、BIGINT、LARGEINT、FLOAT、DOUBLE,元素数量需与
array1 保持一致,数组本身与数组元素均不允许为NULL|
+
+## 返回值
+
+返回两个三维向量的叉积。
+
+## 举例
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]