バージョン

VectorProduct(Vector,Vector) メソッド

ドット積または内積とも呼ばれている 2 つの Vector インスタンスのベクトルの積を返します。
シンタックス
'宣言
 
Public Overloads Shared Function VectorProduct( _
   ByVal x1 As Vector, _
   ByVal x2 As Vector _
) As Double
public static double VectorProduct( 
   Vector x1,
   Vector x2
)

パラメータ

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

戻り値の型

x1 および x2 の対応するエントリの積の合計。
例外
例外解説
System.ArithmeticException x1 の長さが x2 の長さと等しくないときに発生します。
参照