LinearOperator<T> Constructor

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

LinearOperator<T>(Int32, Int32) Constructs a new LinearOperator<T>.
LinearOperator<T>(SerializationInfo, StreamingContext) Constructs a new linear operator from serialization data.

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>(SerializationInfo, StreamingContext)

Constructs a new linear operator from serialization data.
C#
protected LinearOperator(
	SerializationInfo info,
	StreamingContext context
)

Parameters

info  SerializationInfo
The data needed to serialize or deserialize the LinearOperator<T>.
context  StreamingContext
The source and destination of a given serialized stream.

Remarks

This constructor is called internally by the .NET framework when a LinearOperator<T> is deserialized.

See Also