1.7.0 • Published 8 months ago

ts-complex-division v1.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

ts-complex-division

Workflow Codecov NPM Monthly Downloads Install Size Known Vulnerabilities

Floating point complex division in TypeScript

Intro

Complex floating point division isn't quite trivial. The naive method may encounter overflow, underflow, or loss of precision due to the intermediate floating point results.

Usage

import { complexDivision } from 'ts-complex-division';

Calculates (a + ib)/(c + id) and returns a two-element JS array with the real and imaginary components.

result is an optional Array or typed array into which the output is inserted.

Example

import { complexDivision } from 'ts-complex-division';

const result = complexDivision(a, b, c, d);

// result = [ 0.44, 0.08 ]
1.7.0

8 months ago

1.6.0

8 months ago

1.5.0

8 months ago

1.4.0

9 months ago

1.3.0

9 months ago

1.2.0

9 months ago

1.1.0

9 months ago

1.0.0

9 months ago