Vector.Convolution Method

Definition

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

Overload List

Convolution<T>(Vector<T>, Vector<T>) Calculates the convolution of two vectors.
Convolution<T>(Vector<Complex<T>>, Vector<Complex<T>>) Calculates the convolution of two vectors.

Vector.Convolution<T>(Vector<T>, Vector<T>)

Calculates the convolution of two vectors.
C#
public static DenseVector<T> Convolution<T>(
	Vector<T> left,
	Vector<T> right
)

Parameters

left  Vector<T>
The first Vector<T>.
right  Vector<T>
The second Vector<T>.

Type Parameters

T

Return Value

DenseVector<T>
A vector containing the convolution of left and right.

Exceptions

ArgumentNullExceptionleft is null

-or-

right is null

Vector.Convolution<T>(Vector<Complex<T>>, Vector<Complex<T>>)

Calculates the convolution of two vectors.
C#
public static DenseVector<Complex<T>> Convolution<T>(
	Vector<Complex<T>> left,
	Vector<Complex<T>> right
)

Parameters

left  Vector<Complex<T>>
The first Vector<T>.
right  Vector<Complex<T>>
The second Vector<T>.

Type Parameters

T

Return Value

DenseVector<Complex<T>>
A vector containing the convolution of left and right.

Exceptions

ArgumentNullExceptionleft is null

-or-

right is null

See Also