コード例 #1
0
 /// <summary>
 /// Returns the derivative of the Airy function Bi.
 /// <para>AiryBiPrime(z) is defined as d/dz AiryBi(z).</para>
 /// </summary>
 /// <param name="z">The value to compute the derivative of the Airy function of.</param>
 /// <returns>The derivative of the Airy function Bi.</returns>
 public static Complex AiryBiPrime(Complex z)
 {
     return(Amos.CbiryPrime(z));
 }
コード例 #2
0
ファイル: Airy.cs プロジェクト: liuzhga/mathnet-numerics
 /// <summary>
 /// Derivative of the Airy function Bi(z).
 /// <p/>
 /// If expScaled is true, returns Exp(-axzta) * d/dz Bi(z) where zta = (2 / 3) * z * Sqrt(z) and axzta = Abs(zta.Real).
 /// </summary>
 /// <param name="z">The value to compute the derivative of the Airy function of.</param>
 /// <param name="expScaled">If true, returns exponentially-scaled Airy function</param>
 /// <returns></returns>
 public static Complex AiryBiPrime(Complex z, bool expScaled = false)
 {
     return((expScaled) ? Amos.ScaledCbiryPrime(z) : Amos.CbiryPrime(z));
 }