Skip to content

Releases: asc-community/AngouriMath

v1.4.0-preview.4

03 Jan 16:48
4fc6fda

Choose a tag to compare

v1.4.0-preview.4 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.4-preview.3...v1.4-preview.4

1.4.0-preview.3

05 Jul 15:55
43fbfb2

Choose a tag to compare

1.4.0-preview.3 Pre-release
Pre-release
Tan bug fixed (#570)

So basically, before that `tan` checked if the angle is divided
by `pi / 2`. If yes, it should be zero.

But it misses a condition: it also should not be integer. Basically,
whenever you get `pi / 2` as a modulo of dividing the angle by
`pi`, then `tan` turns into NaN. Whereas it just checked dividing
by `pi / 2` and did not care about case when `angle` is `pi` or
any integer by `pi`.

Issue #568

20 Beta releasing

23 Apr 18:41

Choose a tag to compare

20 Beta releasing Pre-release
Pre-release

Added Tensor, system of equations, polynom divisions, periodic roots for solvers, compilation boosted, simplification improved, LaTeX formatting improved, cache for compiled functions added, search boosted, tons of bugs fixed

1.0.17-Beta

05 Jan 15:07

Choose a tag to compare

1.0.17-Beta Pre-release
Pre-release

New syntax for FromString & Simplification improved & Bugs fixed & Compilated function's performance improved (in some cases even surpassing built-in functions)

1.0.16-Beta

31 Dec 10:53

Choose a tag to compare

1.0.16-Beta Pre-release
Pre-release

New functions: Arcsin, Arccos, Arctan, Arccotan
New hard-coded functions: Tan, Cotan
New parser: From Linq expressions
Compiled functions optimized, bugs fixed

1.0.15

25 Dec 19:12

Choose a tag to compare

New Entity method: .Compile, allows to compile functions so they could work up to 15x faster than .Substitute(x, 3).Eval().

1.0.11

03 Dec 10:38

Choose a tag to compare

1.0.11 Pre-release
Pre-release

Bugs related to some functions fixed (for example, 1.0.10 throws exception on MathS.FromString("sqrt(x + sqrt(x))"))

1.0.10

02 Dec 06:28

Choose a tag to compare

1.0.10 Pre-release
Pre-release

Bugs fixed

Math# from string

30 Nov 18:26

Choose a tag to compare

Math# from string Pre-release
Pre-release

New feature: getting the expression tree from a string.

Math# basics

29 Nov 09:29

Choose a tag to compare

Math# basics Pre-release
Pre-release

Current features
Tree
Simplification (v0.1)
SolveNt (v0.1)
Derivative
Latex
ToString
Substitution