Skip to content

Commit

Permalink
More docs & a few fixes (#583)
Browse files Browse the repository at this point in the history
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
WhiteBlackGoose authored Jul 15, 2022
1 parent d57f3b3 commit 15524d2
Show file tree
Hide file tree
Showing 4 changed files with 5,602 additions and 68 deletions.
Loading

0 comments on commit 15524d2

Please sign in to comment.