min method

List min({
  1. int? axis,
})

find min value of given matrix

Implementation

List min({int? axis}) => Matrix2d().min(this, axis: axis);