YAMP.CothFunction.GetValue C# (CSharp) Method

GetValue() protected method

protected GetValue ( ScalarValue value ) : ScalarValue
value ScalarValue
return ScalarValue
        protected override ScalarValue GetValue(ScalarValue value)
        {
            var a = value.Exp();
            var b = (-value).Exp();
            return (a + b) / (a - b);
        }
CothFunction