str function

String str(
  1. List<double> a
)

Returns a string representation of a mat2

@param {ReadonlyMat2} a matrix to represent as a string @returns {String} string representation of the matrix

Implementation

String str(List<double> a) {
  return """mat2("${a[0]}", "${a[1]}", "${a[2]}", "${a[3]}")""";
}