Hermitian Matrix<T> Constructor
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.2
Overload List
Hermitian | Initializes a new instance of the HermitianMatrix<T> class Obsolete. |
Hermitian | Constructs a new Hermitian matrix of the specified dimensions. |
HermitianMatrix<T>(SerializationInfo, StreamingContext)
Initializes a new instance of the HermitianMatrix<T> class
[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.
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
Argument | rowCount is less than zero. -or- columnCount is less than zero. |