Installation
npm install --save @types/gaussian-elimination
Summary
This package contains type definitions for gaussian-elimination (https://www.npmjs.com/package/gaussian-elimination).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gaussian-elimination.
index.d.ts
/**
* Solves a linear equation system and returns the values of the missing variables.
* @param mat The matrix (the linear equation system) holding the coefficiants of the missing variables in the system; the last element of the nested arrays being the solution to each equation.
*/
declare function gauss(mat: number[][]): number[];
export = gauss;
Additional Details
- Last updated: Tue, 07 Nov 2023 03:09:37 GMT
- Dependencies: none
Credits
These definitions were written by paracosm.