using System; using L=Science.Mathematics.SpecialFunction; namespace ScienceTest.MathematicsTest.SpecialFunctionTest { /// /// ElementaryFunctionTest /// public class ElementaryTest { public ElementaryTest() { } private string result; public string Result { get{return result;} } public void Compute() { result = Convert.ToString(L.Elementary.ArcCsc(10.12))+"\r\n"; result += Convert.ToString(L.Elementary.ArcCsch(10.12))+"\r\n"; result += Convert.ToString(L.Elementary.ArcSec(10.12))+"\r\n"; result += Convert.ToString(L.Elementary.ArcSech(0.12))+"\r\n"; } } } /* 0.0989757477965105 0.0986541239075058 1.47182057899839 2.80979111975497 */