Calculates the convolution of two vectors.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DenseVector<T> Convolution<T>(
Vector<T> left,
Vector<T> right
)
Public Shared Function Convolution(Of T) (
left As Vector(Of T),
right As Vector(Of T)
) As DenseVector(Of T)
public:
generic<typename T>
static DenseVector<T>^ Convolution(
Vector<T>^ left,
Vector<T>^ right
)
static member Convolution :
left : Vector<'T> *
right : Vector<'T> -> DenseVector<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The first VectorT. - right
- Type: Extreme.MathematicsVectorT
The second VectorT.
Type Parameters
- T
Return Value
Type:
DenseVectorTA vector containing the convolution of
left and
right.
Reference