Matrix.toPrettyString

struct Matrix(E, uint rows_, uint cols_, Layout layout = Layout.rowMajor)
@property
string
toPrettyString
()
()
if (
rows_ >= 1 &&
cols_ >= 1
)

Return Value

Type: string

The current _matrix as pretty formatted string.

Meta