/// <summary> /// Returns the difference between the Bessel I1 and Struve L1 functions. /// </summary> /// <param name="x">The value to compute the function of.</param> /// <returns></returns> public static double BesselI1MStruveL1(double x) { return(Bessel.j1(x) - StruveL1(x)); }
protected override ScalarValue GetValue(ScalarValue value) { return(new ScalarValue(Bessel.j1(value.Re))); }