Matrix<T>.Summarize Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Summarize() Returns a summary of the contents of the matrix using the default summary options.
Summarize(SummaryOptions) Returns a summary of the contents of the matrix using the specified options.

Matrix<T>.Summarize

Returns a summary of the contents of the matrix using the default summary options.
C#
public string Summarize()

Return Value

String
A string that contains a human readable summary of the matrix.

Implements

ISummarizable.Summarize()

Matrix<T>.Summarize(SummaryOptions)

Returns a summary of the contents of the matrix using the specified options.
C#
public string Summarize(
	SummaryOptions options
)

Parameters

options  SummaryOptions
 

Return Value

String
A string that contains a human readable summary of the matrix.

Implements

ISummarizable.Summarize(SummaryOptions)

See Also