AnimatGuiCtrls.MatrixLibrary.Matrix.DotProduct C# (CSharp) Method

DotProduct() public static method

Returns the dot product of two vectors whose dimensions should be [3] or [3,1]. In case of an error the error is raised as an exception.
public static DotProduct ( Matrix V1, Matrix V2 ) : double
V1 Matrix First Matrix object (dimension [3,1]) in the dot product
V2 Matrix Second Matrix object (dimension [3,1]) in the dot product
return double
        public static double DotProduct(Matrix V1, Matrix V2)
        {
            return (DotProduct(V1.in_Mat, V2.in_Mat));
        }

Same methods

Matrix::DotProduct ( double V1, double V2 ) : double