LinearOperator<T> Constructor

Definition

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

Overload List

LinearOperator<T>(Int32, Int32)

Constructs a new LinearOperator<T>.
C#
protected LinearOperator(
	int rowCount,
	int columnCount
)

Parameters

rowCount  Int32
 
columnCount  Int32
 

Exceptions

ArgumentOutOfRangeException

rowCount is less than zero.

-or-

columnCount is less than zero.

LinearOperator<T>(Int32, Int32, TransposeOperation)

Constructs a new LinearOperator<T>.
C#
protected LinearOperator(
	int rowCount,
	int columnCount,
	TransposeOperation operation
)

Parameters

rowCount  Int32
 
columnCount  Int32
 
operation  TransposeOperation
 

Exceptions

ArgumentOutOfRangeException

rowCount is less than zero.

-or-

columnCount is less than zero.

See Also