numbl 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist-cli/cli.js +21976 -11748
- package/dist-plot-viewer/assets/{index-CYInUJ8O.js → index-_FVS_eKT.js} +5 -5
- package/dist-plot-viewer/index.html +1 -1
- package/native/lapack_addon.cpp +3 -0
- package/native/lapack_common.h +12 -0
- package/native/lapack_linsolve.cpp +154 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,10 @@ Numbl lets you run MATLAB-compatible code in the browser and on the command line
|
|
|
4
4
|
|
|
5
5
|
**Early stage project.** Numbl is under active development and new functionality is being added regularly. Performance is currently very slow compared to MATLAB — we intend to improve this over time, with the goal of reaching performance comparable to desktop MATLAB and as fast as possible in the browser.
|
|
6
6
|
|
|
7
|
+
## Try it in the browser
|
|
8
|
+
|
|
9
|
+
You can try numbl directly in the browser at <https://magland.github.io/numbl> — no installation required. All execution happens locally in your browser. Note that the browser version does not include LAPACK support, so linear algebra operations (matrix inverse, SVD, eigenvalues, etc.) will use a slower pure JavaScript fallback.
|
|
10
|
+
|
|
7
11
|
## Installation
|
|
8
12
|
|
|
9
13
|
```bash
|
|
@@ -64,7 +68,6 @@ Note: if you previously built the native addon, you'll need to run `numbl build-
|
|
|
64
68
|
|
|
65
69
|
- [Overview](docs/overview.md) — What numbl is and how to use it
|
|
66
70
|
- [Architecture](docs/architecture.md) — How the compiler pipeline works
|
|
67
|
-
- [Function specialization](docs/specialization.md) — The type specialization optimization pass
|
|
68
71
|
- [Adding built-in functions](docs/adding-builtins.md) — How to contribute new built-ins
|
|
69
72
|
- [Test scripts](docs/test-scripts.md) — Writing and running `.m` integration tests
|
|
70
73
|
- [Development](docs/development.md) — Setting up local development
|