Accord.Statistics.Kernels.TaylorGaussian.Product C# (CSharp) Метод

Product() публичный Метод

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.
Результат void
        public void Product(double a, double[] b, double[] result)
        {
            linear.Product(a, Transform(b), result);
        }