1.0.2 • Published 2 years ago

@types/gaussian-elimination v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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

// Type definitions for gaussian-elimination 1.0
// Project: https://www.npmjs.com/package/gaussian-elimination
// Definitions by: paracosm <https://github.com/codecosm>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/**
 * 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: Fri, 18 Jun 2021 06:31:21 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by paracosm.