max method

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

find max value of given matrix

Implementation

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