阵列操作
点击复制
返回给定数组的最小/最大/平均/中间值。
区块 | 结果 |
Min in Array | 数组中最小的值 |
Max in Array | 数组中最大的值 |
Mean in Array | 数组元素的算术平均值 |
Median in Array | 阵列元素的中位数 |
流程连接
- [Input] In - 开始该块的执行。
- [Output] Out - 当区块执行完毕后激活。
数据连接
- [Input] Array (integer/float array) - 要评估的数组。
- [Output] Result (depends on the input data type) - 操作的结果。
- [Output, only in Max/Min] Index (integer) - 找到的元素在数组中的位置(从0开始)。