バージョン

Convolve(Vector,Vector,ConvolutionType) メソッド

2 つの Vector インスタンスのコンボリューションを返します。
シンタックス
'宣言
 
Public Overloads Shared Function Convolve( _
   ByVal x1 As Vector, _
   ByVal x2 As Vector, _
   ByVal type As ConvolutionType _
) As Vector
public static Vector Convolve( 
   Vector x1,
   Vector x2,
   ConvolutionType type
)

パラメータ

x1
最初のベクトル。
x2
2番目のベクトル。
type
すべてのコンボリューションを返す、または中心点を返して一部のエッジ効果を除外するかどうかを指定します。

戻り値の型

y[i] = DotProduct(x1[j],x2[i-j]) である Vector y。
参照