complex numbers code bricks for JavaScript
npm install @aureooms/js-complexComplex numbers code bricks for JavaScript.
``js`
let kernel = complex.cartesian.kernel.compile( number , "i" ) ;
let { add , sub , mul , div } = complex.cartesian.array.compile( kernel ) ;











Can be managed through jspm,
duo,
component,
bower,
ender,
jam,
spm,
and npm.
terminal
jspm install github:aureooms/js-complex
or
jspm install npm:@aureooms/js-complex
`
$3
No install step needed for duo!$3
`terminal
component install aureooms/js-complex
`$3
`terminal
bower install @aureooms/js-complex
`$3
`terminal
ender add @aureooms/js-complex
`$3
`terminal
jam install @aureooms/js-complex
`$3
`terminal
spm install @aureooms/js-complex --save
`$3
`terminal
npm install @aureooms/js-complex --save
`Require
$3
`js
let complex = require( "github:aureooms/js-complex" ) ;
// or
import complex from '@aureooms/js-complex' ;
`
$3
`js
let complex = require( "aureooms/js-complex" ) ;
`$3
`js
let complex = require( "@aureooms/js-complex" ) ;
`$3
The script tag exposes the global variable complex.
`html
`
Alternatively, you can use any tool mentioned here.$3
`js
require( [ "@aureooms/js-complex" ] , function ( complex ) { ... } ) ;
``