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](

11 lines (10 loc) 243 B
import * as T from '../type'; interface Estimate { n: number; mean: number; war: number; std: number; } export declare const estimate: (d: T.Vector) => Estimate; export declare const stddev: (d: T.Vector) => number; export {};