Linear Operator<T> Constructor
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Overload List
| Linear | Constructs a new LinearOperator<T>. |
| Linear | Constructs a new LinearOperator<T>. |
LinearOperator<T>(Int32, Int32)
Constructs a new LinearOperator<T>.
protected LinearOperator(
int rowCount,
int columnCount
)Parameters
Exceptions
| Argument | rowCount is less than zero. -or- columnCount is less than zero. |
LinearOperator<T>(Int32, Int32, TransposeOperation)
Constructs a new LinearOperator<T>.
protected LinearOperator(
int rowCount,
int columnCount,
TransposeOperation operation
)Parameters
- rowCount Int32
- columnCount Int32
- operation TransposeOperation
Exceptions
| Argument | rowCount is less than zero. -or- columnCount is less than zero. |