min(x: array,dim?: 0 | 1,): number
Smallest element in array.
Computes the smallest element in an array or matrix. For arrays, returns a single value. For matrices, returns the minimum along the specified dimension.
x: array
Input array or matrix
min(x: matrix,dim?: 0 | 1,): array
Smallest element in array.
Computes the smallest element in an array or matrix. For arrays, returns a single value. For matrices, returns the minimum along the specified dimension.
x: matrix
Input array or matrix
Minimum values