HermitianMatrix<T> Constructor

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.2

Overload List

HermitianMatrix<T>(SerializationInfo, StreamingContext)Initializes a new instance of the HermitianMatrix<T> class
Obsolete.
HermitianMatrix<T>(Int32, Int32, ArrayAttributes) Constructs a new Hermitian matrix of the specified dimensions.

HermitianMatrix<T>(SerializationInfo, StreamingContext)

Note: This API is now obsolete.
Initializes a new instance of the HermitianMatrix<T> class
C#
[ObsoleteAttribute(DiagnosticId = "SYSLIB0051")]
protected HermitianMatrix(
	SerializationInfo info,
	StreamingContext context
)

Parameters

info  SerializationInfo
 
context  StreamingContext
 

HermitianMatrix<T>(Int32, Int32, ArrayAttributes)

Constructs a new Hermitian matrix of the specified dimensions.
C#
protected HermitianMatrix(
	int rowCount,
	int columnCount,
	ArrayAttributes attributes
)

Parameters

rowCount  Int32
The number of rows.
columnCount  Int32
The number of columns.
attributes  ArrayAttributes
The attributes of the new matrix.

Exceptions

ArgumentOutOfRangeException

rowCount is less than zero.

-or-

columnCount is less than zero.

See Also