|
16 | 16 |
|
17 | 17 | | Capability | Example | Docs | |
18 | 18 | |---|---|---| |
19 | | -| **Arithmetic & Variables** | `expr.evaluate("5 + 7 * 2")` | [numbers.md](docs/datatypes/numbers.md) | |
20 | | -| **Unit conversion** | `expr.evaluate("2 inch to cm")` | [units.md](docs/datatypes/units.md) | |
21 | | -| **Matrix operations** | `expr.evaluate("det([-1,2;3,1])")` | [matrices.md](docs/datatypes/matrices.md) | |
22 | | -| **Complex numbers** | `expr.evaluate("9/3 + 2i")` | [complex.md](docs/datatypes/complex_numbers.md) | |
23 | | -| **Symbolic math** | `expr.evaluate('expand("(x+1)^2")')` | [algebra.md](docs/expressions/algebra.md) | |
24 | | -| **Arbitrary precision** | `expr.evaluate('bignumber("0.1") + bignumber("0.2")')` | [bignumbers.md](docs/datatypes/bignumbers.md) | |
25 | | -| **Exact fractions** | `expr.evaluate("fraction(1,3) + fraction(1,6)")` | [fractions.md](docs/datatypes/fractions.md) | |
26 | | -| **Calculus & statistics** | `expr.evaluate('integral("x^2", 0, 1)')` | [functions.md](docs/reference/functions.md) | |
27 | | -| **Lambda expressions** | `expr.evaluate('map([1,2,3], x -> x^2)')` | [customization.md](docs/expressions/customization.md) | |
28 | | -| **Expression chaining** | `c.evaluate("sqrt(x)").evaluate("ans * 2").done()` | [chaining.md](docs/core/chaining.md) | |
29 | | -| **State serialization** | `expr.exportState()` / `expr.importState(state)` | [serialization.md](docs/core/serialization.md) | |
30 | | -| **Degree-mode trig** | `expr.evaluate("sind(90)")` | [functions.md](docs/reference/functions.md) | |
| 19 | +| **Arithmetic & Variables** | `expr.evaluate("5 + 7 * 2")` | [datatypes/numbers.md](docs/datatypes/numbers.md) | |
| 20 | +| **Unit conversion** | `expr.evaluate("2 inch to cm")` | [datatypes/units.md](docs/datatypes/units.md) | |
| 21 | +| **Matrix operations** | `expr.evaluate("det([-1,2;3,1])")` | [datatypes/matrices.md](docs/datatypes/matrices.md) | |
| 22 | +| **Complex numbers** | `expr.evaluate("9/3 + 2i")` | [datatypes/complex.md](docs/datatypes/complex_numbers.md) | |
| 23 | +| **Symbolic math** | `expr.evaluate('expand("(x+1)^2")')` | [expressions/algebra.md](docs/expressions/algebra.md) | |
| 24 | +| **Arbitrary precision** | `expr.evaluate('bignumber("0.1") + bignumber("0.2")')` | [datatypes/bignumbers.md](docs/datatypes/bignumbers.md) | |
| 25 | +| **Exact fractions** | `expr.evaluate("fraction(1,3) + fraction(1,6)")` | [datatypes/fractions.md](docs/datatypes/fractions.md) | |
| 26 | +| **Calculus & statistics** | `expr.evaluate('integral("x^2", 0, 1)')` | [reference/functions.md](docs/reference/functions.md) | |
| 27 | +| **Lambda expressions** | `expr.evaluate('map([1,2,3], x -> x^2)')` | [expressions/customization.md](docs/expressions/customization.md) | |
| 28 | +| **Expression chaining** | `c.evaluate("sqrt(x)").evaluate("ans * 2").done()` | [core/chaining.md](docs/core/chaining.md) | |
| 29 | +| **State serialization** | `expr.exportState()` / `expr.importState(state)` | [core/serialization.md](docs/core/serialization.md) | |
| 30 | +| **Degree-mode trig** | `expr.evaluate("sind(90)")` | [reference/functions.md](docs/reference/functions.md) | |
31 | 31 |
|
32 | 32 | ## Installation |
33 | 33 |
|
|
0 commit comments