Max Of Byte Array
Finds the largest byte value in an array. An array is a data structure that stores a sequence of fixed-length elements of the same type. Each element can be accessed via its index, starting at zero.
Flow
Parameter set
|
Parameter |
Type |
Description |
|---|---|---|
|
Array |
Byte<Array> |
A byte array that can be transmitted over a connection. |
|
Index |
Int32 |
|
|
Max Value |
Byte |
The largest value in the array. |
Max Of Float Array
Finds the largest floating-point value in an array. An array is a data structure that stores a sequence of fixed-size elements of the same type. Each element can be accessed via its index, starting at zero.
Flow
Parameter set
|
Parameter |
Type |
Description |
|---|---|---|
|
Array |
Single<Array> |
A float array that can be transmitted over a connection. |
|
Index |
Int32 |
|
|
Max Value |
Single |
The largest value in the array. |
Min Of Byte Array
Find the smallest byte value in an array. An array is a data structure that stores a sequence of fixed-length elements of the same type. Each element can be accessed via its index, starting at zero.
Flow
Parameter set
|
Parameter |
Type |
Description |
|---|---|---|
|
Array |
Byte<Array> |
A byte array that can be transmitted over a connection. |
|
Index |
Int32 |
|
|
Min Value |
Byte |
The smallest value in the array. |
Min Of Float Array
Find the smallest floating-point value in an array. An array is a data structure that stores a sequence of elements of a fixed type. Each element can be accessed via its index, starting at zero.
Flow
Parameter set
|
Parameter |
Type |
Description |
|---|---|---|
|
Array |
Single<Array> |
A byte array that can be transmitted over a connection. |
|
Index |
Int32 |
|
|
Min Value |
Single |
The smallest value in the array. |