UNPKG

ml-matrix

Version:

Matrix manipulation and computation library

11 lines (9 loc) 234 B
import { AbstractMatrix } from '../matrix'; export default class BaseView extends AbstractMatrix { constructor(matrix, rows, columns) { super(); this.matrix = matrix; this.rows = rows; this.columns = columns; } }