using System; using L=Science.Mathematics.SpecialFunction; namespace ScienceTest.MathematicsTest.SpecialFunctionTest { /// /// IntegralTest /// public class IntegralTest { public IntegralTest() { } private string result; public string Result { get{return result;} } public void Compute() { result = Convert.ToString(L.Integral.FresnelC(3.0))+"\r\n"; result += Convert.ToString(L.Integral.FresnelS(3.0))+"\r\n"; result += Convert.ToString(L.Integral.CosineCi(3.0))+"\r\n"; result += Convert.ToString(L.Integral.SineSi(3.0))+"\r\n"; result += Convert.ToString(L.Integral.Dawson(12.0))+"\r\n"; } } } /* 0.605720789305146 0.49631299892991 0.119629784129372 1.84865251002395 0.0418128613111894 */