LinearOperator<T>.Multiply Method

Definition

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

Overload List

Multiply(Matrix<T>)Applies the linear operator to a matrix.
Multiply(Vector<T>)Applies the linear operator to a vector.

Multiply(Matrix<T>)

Applies the linear operator to a matrix.
C#
public Matrix<T> Multiply(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
A Matrix<T>.

Return Value

Matrix<T>
The product of the linear operator and matrix.

Exceptions

ArgumentNullException

matrix is null.

DimensionMismatchException

The number of rows of matrix does not equal the number of columns in the linear operator.

Multiply(Vector<T>)

Applies the linear operator to a vector.
C#
public Vector<T> Multiply(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A Vector<T>.

Return Value

Vector<T>
The product of the linear operator and vector.

Exceptions

ArgumentNullException

vector is null.

DimensionMismatchException

The length of vector does not equal the number of columns in the linear operator.

See Also