LinearOperator<T>.MultiplyTranspose(Vector<T>) Method

Applies the (conjugate) transpose of the linear operator to a vector.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> MultiplyTranspose(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A Vector<T>.

Return Value

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

Exceptions

ArgumentNullExceptionvector is null.
DimensionMismatchExceptionThe length of vector does not equal the number of rows in the linear operator.

See Also