Mat.toString

Converts this matrix to a string.

struct Mat(T, size_t rowCount, size_t colCount)
const
string
toString
()
if (
isNumeric!T &&
rowCount > 0
&&
colCount > 0
)

Return Value

Type: string

A string representation of the matrix.

Meta