Accord.Statistics.Kernels.TaylorGaussian.Product C# (CSharp) Méthode

Product() public méthode

Elementwise multiplication of scalar a and vector b, storing in result.
public Product ( double a, double b, double result ) : void
a double The scalar to be multiplied.
b double The vector to be multiplied.
result double An array to store the result.
Résultat void
        public void Product(double a, double[] b, double[] result)
        {
            linear.Product(a, Transform(b), result);
        }