Пример #1
0
 /// <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));
 }
Пример #2
0
 protected override ScalarValue GetValue(ScalarValue value)
 {
     return(new ScalarValue(Bessel.j1(value.Re)));
 }