@nexys/math-ts
Version:
[](https://www.npmjs.com/package/@nexys/math-ts) [](https://travis-ci.com/github/Nexysweb/math-ts) [ • 314 B
TypeScript
import * as T from '../type';
export default class Linear {
x: T.Matrix;
y: T.Matrix;
g: T.Matrix;
z: T.Matrix;
a: T.Matrix;
constructor(x: T.Matrix, y: T.Matrix | T.Vector);
estimateY(x?: T.Matrix): T.Matrix;
}
export declare const regression: (x: T.Matrix, py: T.Vector) => T.Matrix;