matrix icon indicating copy to clipboard operation
matrix copied to clipboard

Matrix manipulation and computation library

Results 19 matrix issues
Sort by recently updated
recently updated
newest added

A C example that could be used as web assembly but requires an external library for mathematical operations. https://www.cs.virginia.edu/~jdl/nmf/

use case: `mat1.setColumn(mat2.getColumnView(1))`

enhancement

Is there a method to concatenate horizontally or vertically 2 matrix ? I don't find anything, so I have to use that : ```js function concatMatrix(A, B, direction='H'){ var result...

Hello, thanks for the great library, I use it quite often in my work. Something I didn't find in the API and thus copy around my projects is an `apply`...

When upgrading from version 6.10.5 to 6.10.7, I am now getting this error in the `matrix.mjs` file. ![image](https://github.com/mljs/matrix/assets/65235172/f4698297-e70f-41d1-b227-73ea714f63a8) ![image](https://github.com/mljs/matrix/assets/65235172/32e20586-68fa-4214-a67b-e1767550877f) Here is what my import looks like: ![image](https://github.com/mljs/matrix/assets/65235172/62a7cdda-74d1-4c81-b632-eda1d0cb11a3) Any help would...

The order of processing loops may be critical in order to optimize speed. The implemented algorithms EVD, SVD, etc may assume a specific row / col or col / row...

https://en.wikipedia.org/wiki/Multidimensional_scaling

How can I join two matrices, either vertically or horizontally, I can't find this command in the documentation :C

Hi, just wondering whether WebGPU support would be possible (https://codelabs.developers.google.com/your-first-webgpu-app#0). Not sure how big of a lift this might be or how hard the integration could get. Context: trying to...