UNPKG

910 BMarkdownView Raw
1# Roadmap
2
3A rough roadmap for math.js.
4
5
6## Version 1.x
7
8- Support for derived units (like `km/h`, `kg*m/s2`, etc).
9- Improve performance. Rewrite `Matrix` to support typed arrays.
10- Change to a modular architecture, split the library into separate modules
11 like `mathjs-core`, `mathjs-expression`, `mathjs-unit`, `mathjs-matrix`,
12 `mathjs-complex`, `mathjs-bignumber`, and maybe separate modules
13 `mathjs-statistics`, `mathjs-numeric`, etc.
14- Support for fractions.
15- Functions and data types for numeral systems: Bin, Oct, Hex, Dec.
16- BigNumber support for all functions and constants (for example trigonometric
17 functions still miss BigNumber support).
18- Full scripting capabilities for the expression parser (for and while loops,
19 function blocks, etc).
20- Implement a more broad set of common functions covering all common
21 mathematical areas.
22
23
24## Version 2.x
25
26- Support for symbolic algebra.