UNPKG
ml-matrix
Version:
future (3.0.0-0)
latest (6.12.1)
next (6.0.0-6)
6.12.1
6.12.0
6.11.1
6.11.0
6.10.8
6.10.7
6.10.6
6.10.5
6.10.4
6.10.3
6.10.2
6.10.1
6.10.0
6.9.0
6.8.2
6.8.1
6.8.0
6.7.0
6.6.0
6.5.3
6.5.2
6.5.1
6.5.0
6.4.1
6.4.0
6.3.0
6.2.0
6.1.2
6.1.1
6.1.0
6.0.0
6.0.0-6
6.0.0-5
6.0.0-4
6.0.0-3
6.0.0-2
6.0.0-1
6.0.0-0
5.3.0
5.2.1
5.2.0
5.1.1
5.1.0
5.0.1
5.0.0
4.0.0
3.0.0
3.0.0-0
2.4.0-1
2.4.0-0
2.3.0
2.2.0
2.1.0
2.0.0
1.4.0
1.3.0
1.2.1
1.2.0
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-0
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Matrix manipulation and computation library
github.com/mljs/matrix
mljs/matrix
ml-matrix
/
src
/
views
/
base.js
11 lines
(9 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
AbstractMatrix
}
from
'../matrix'
;
export
default
class
BaseView
extends
AbstractMatrix
{
constructor
(
matrix, rows, columns
) {
super
();
this
.
matrix
= matrix;
this
.
rows
= rows;
this
.
columns
= columns; } }