Symmetric
            
            Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Symmetric | Constructs a new matrix from serialization values. Obsolete. | 
| Symmetric | Constructs a new symmetric matrix of the specified dimensions. | 
SymmetricMatrix<T>(SerializationInfo, StreamingContext)
            Constructs a new matrix from serialization values.
            
[ObsoleteAttribute(DiagnosticId = "SYSLIB0051")]
protected SymmetricMatrix(
	SerializationInfo info,
	StreamingContext context
)Parameters
- info SerializationInfo
- The values needed to serialize or deserialize the Matrix<T>.
- context StreamingContext
- The source and destination of a given serialized stream.
Remarks
This constructor is called internally by the .NET framework when a Matrix<T> is deserialized.
SymmetricMatrix<T>(Int32, Int32, ArrayAttributes)
            Constructs a new symmetric matrix of the specified dimensions.
            
protected SymmetricMatrix(
	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. |