public unsafe override void Multiply(double[] src1, double scalar, ref double[] dest)
        {
            if (src1.Length != dest.Length)
            {
                throw new Exception("Length of src1 is not equal to the length of dest");
            }

            fixed(double *pSrc1 = src1, pDst = dest)
            {
                IPPNative.ippsMulC_64f(pSrc1, scalar, pDst, dest.Length);
            }
        }