numbl 0.4.4 → 0.4.6
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 +5 -1
- package/dist-cli/cli.js +16094 -13802
- package/dist-lib/graphics/figuresReducer.d.ts +9 -0
- package/dist-lib/graphics/types.d.ts +12 -0
- package/dist-lib/lib.d.ts +2 -0
- package/dist-lib/lib.js +2330 -5207
- package/dist-lib/numbl-core/executeCode.d.ts +10 -0
- package/dist-lib/numbl-core/executors/plugins.d.ts +9 -0
- package/dist-lib/numbl-core/helpers/marching-cubes-tables.d.ts +10 -0
- package/dist-lib/numbl-core/helpers/marching-cubes.d.ts +46 -0
- package/dist-lib/numbl-core/interpreter/builtins/array-construction.d.ts +7 -1
- package/dist-lib/numbl-core/interpreter/builtins/geometry.d.ts +10 -0
- package/dist-lib/numbl-core/interpreter/builtins/index.d.ts +1 -0
- package/dist-lib/numbl-core/interpreter/interpreter.d.ts +1 -0
- package/dist-lib/numbl-core/interpreter/interpreterExec.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/snippets.c.gen.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/snippets.gen.d.ts +0 -2
- package/dist-lib/numbl-core/jit/codegen/runtime.d.ts +2 -0
- package/dist-lib/numbl-core/native/geometry-bridge.d.ts +29 -0
- package/dist-lib/numbl-core/native/qhull-browser.d.ts +15 -0
- package/dist-lib/numbl-core/native/qhull-node.d.ts +13 -0
- package/dist-lib/numbl-core/runtime/plotBuiltinDispatch.d.ts +6 -0
- package/dist-lib/numbl-core/runtime/plotUtils.d.ts +18 -0
- package/dist-lib/numbl-core/runtime/runtime.d.ts +22 -0
- package/dist-lib/numbl-core/runtime/runtimePlot.d.ts +1 -0
- package/dist-lib/numbl-core/runtime/uihtmlSession.d.ts +40 -0
- package/dist-lib/numbl-core/version.d.ts +1 -1
- package/dist-plot-viewer/assets/index-D4grNz8m.js +4504 -0
- package/dist-plot-viewer/index.html +1 -1
- package/dist-site-viewer/assets/index-B2mCFC55.js +4826 -0
- package/dist-site-viewer/assets/numbl-worker-DWZE29ck.js +5116 -0
- package/dist-site-viewer/assets/qhull-DM50poqF.wasm +0 -0
- package/dist-site-viewer/index.html +1 -1
- package/dist-site-viewer/numbl-embed.js +55 -13
- package/package.json +2 -1
- package/dist-plot-viewer/assets/index-Ct51ZiF1.js +0 -4426
- package/dist-site-viewer/assets/index-USrK1-DZ.js +0 -4748
- package/dist-site-viewer/assets/numbl-worker-s3tsbJJ2.js +0 -12003
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Numbl
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A numerical computing environment compatible with MATLAB syntax, featuring 400+ built-in functions. Runs in your browser or on the command line.
|
|
4
4
|
|
|
5
5
|
[](https://numbl.org/embed-repl)
|
|
6
6
|
|
|
@@ -61,3 +61,7 @@ Jeremy Magland and Dan Fortunato, Center for Computational Mathematics, Flatiron
|
|
|
61
61
|
## License
|
|
62
62
|
|
|
63
63
|
Apache 2.0
|
|
64
|
+
|
|
65
|
+
## Disclaimer
|
|
66
|
+
|
|
67
|
+
numbl is not affiliated with, endorsed by, or supported by MathWorks, Inc. MATLAB is a registered trademark of MathWorks, Inc.
|