バージョン

Convolve(Vector,Vector) メソッド

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

パラメータ

x1
最初のベクトル。
x2
2番目のベクトル。

戻り値の型

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