2.0.0 • Published 3 years ago

math-function-generator v2.0.0

Weekly downloads
4
License
MIT
Repository
-
Last release
3 years ago

Math Function Generator

Math Function Generator is a Typescript library that can be used to generate various types of math functions (E.g. Linear, Quadratic, Trigonometric) with random coefficient and constant values.

Installation

npm install math-function-generator

OR

yarn add math-function-generator

Usage

import { LinearFunction, QuadraticFunction } from 'math-function-generator';

const randomLinearEquations = new LinearFunction().getEquations();
const randomQuadraticEquations = new QuadraticFunction({
  subType: 'vertex',
  randRange: { min: 2, max: 10 },
}).getEquations();

Authors

License

MIT

2.0.0

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago