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"; } } }