Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs for all non-obsolete methods in AngouriMath.MathS added. Bug fixed: there was a wrong definition of hyperbolic cotangent (MathS.Hyperbolic.Cotanh). Added API for: `MathS.oo`. Use: ``` using static AngouriMath.MathS; var inf = +oo; var minf = -oo; ``` Also added API for creating multiple variables: ``` using static AngouriMath.MathS; var x = Var("x"); // old API var (x, y) = Var("x", "y"); // new one var (x, y, z) = Var("x", "y", "z"); // new one ``` Docs tracking issue: #585 .
- Loading branch information