Click or drag to resize

MatrixMathMatrixToStringT(String, IROMatrixT) Method

Converts the given matrix to a human-readable string format.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static string MatrixToString<T>(
	string? name,
	IROMatrix<T> a
)
where T : struct, new()

Parameters

name  String
An optional name for the matrix.
a  IROMatrixT
The input matrix.

Type Parameters

T
The type of the matrix elements.

Return Value

String
A string representation of the matrix.
See Also