You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 .
So we're adding a lot more examples now.
AngouriMath.MathS.*
More docs #583AngouriMath.Entity
Working on more docs #586AngouriMath.Extensions
The text was updated successfully, but these errors were encountered: