UNPKG

@nexys/math-ts

Version:

[![npm version](https://badge.fury.io/js/%40nexys%2Fmath-ts.svg)](https://www.npmjs.com/package/@nexys/math-ts) [![TavisCI](https://travis-ci.com/Nexysweb/tableau-wdc-react.svg?branch=master)](https://travis-ci.com/github/Nexysweb/math-ts) [![Deployment](

12 lines (11 loc) 314 B
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;