https://github.com/drom/bitmapper
Library of Matrix functions in JavaScript
https://github.com/drom/bitmapper
Last synced: 2 months ago
JSON representation
Library of Matrix functions in JavaScript
- Host: GitHub
- URL: https://github.com/drom/bitmapper
- Owner: drom
- License: mit
- Created: 2015-12-10T06:34:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-21T16:52:02.000Z (over 9 years ago)
- Last Synced: 2025-03-15T09:33:44.890Z (2 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cells
Matrix library in JavaScript
## Use
```js
var cells = require('cells.drom');
var heap = new ArrayBuffer(0x10000);
var stdlib = { Math: Math };
var mx = cells(stdlib, null, heap);
```### mx.uniqueCols(mx, geometry)
Remove duplicate columns from the matrix.
### mx.uniqueRows(mx, geometry)
Remove duplicate rows from the matrix.