mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
* chore(package): update standard to version 12.0.0
* update to new lint version with --fix
I believe this mainly adds whitespace to `{}`'s.
* Replace assert.equal with assert.strictEqual
This breaks a lot of tests which I will endevour to fix in the next
commits.
* Fix most errors due to assert.strictEquals
Some instances of `strictEquals` are replaced by `deepEquals`.
`toString` has been used to make some string comparisions explicit.
Tests will still fail untill #1236 and #1237 are fixed.
* Fix assertion erros due to -0
With node 10, assert.strictEqual no longer considers `0 === -0`.
I missed these first time round as I was using node 8.
* Put toString correct side of bracket
I was converting the constructor to a string rather
than the result of the computation. Oops.
* Fixed #1236: quantileSeq has inconsistant return
* Update package-lock
* Fixed #1237: norm sometimes returning a complex number instead of number
* Fix cli tests
* More changes for standardjs, and fixes in unit tests
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
/**
|
|
* Math.js can easily be extended with functions and variables using the
|
|
* `import` function. The function `import` accepts a module name or an object
|
|
* containing functions and variables.
|
|
*/
|
|
|
|
// load math.js (using node.js)
|
|
const math = require('../index')
|
|
|
|
/**
|
|
* Define new functions and variables
|
|
*/
|
|
math.import({
|
|
myConstant: 42,
|
|
hello: function (name) {
|
|
return 'hello, ' + name + '!'
|
|
}
|
|
})
|
|
|
|
// defined methods can be used in both JavaScript as well as the parser
|
|
print(math.myConstant * 2) // 84
|
|
print(math.hello('user')) // 'hello, user!'
|
|
|
|
print(math.eval('myConstant + 10')) // 52
|
|
print(math.eval('hello("user")')) // 'hello, user!'
|
|
|
|
/**
|
|
* Import the math library numbers.js, https://github.com/sjkaliski/numbers.js
|
|
* The library must be installed first using npm:
|
|
* npm install numbers
|
|
*/
|
|
try {
|
|
// load the numbers.js library
|
|
const numbers = require('numbers')
|
|
|
|
// import the numbers.js library into math.js
|
|
math.import(numbers, { wrap: true, silent: true })
|
|
|
|
if (math.fibonacci) {
|
|
// calculate fibonacci
|
|
print(math.fibonacci(7)) // 13
|
|
print(math.eval('fibonacci(7)')) // 13
|
|
}
|
|
} catch (err) {
|
|
console.log('Warning: To use numbers.js, the library must ' +
|
|
'be installed first via `npm install numbers`.')
|
|
}
|
|
|
|
/**
|
|
* Import the math library numeric.js, http://numericjs.com/
|
|
* The library must be installed first using npm:
|
|
* npm install numeric
|
|
*/
|
|
try {
|
|
// load the numeric.js library
|
|
const numeric = require('numeric')
|
|
|
|
// import the numeric.js library into math.js
|
|
math.import(numeric, { wrap: true, silent: true })
|
|
|
|
if (math.eig) {
|
|
// calculate eigenvalues of a matrix
|
|
print(math.eval('eig([1, 2; 4, 3])').lambda.x) // [5, -1]
|
|
|
|
// solve AX = b
|
|
const A = math.eval('[1, 2, 3; 2, -1, 1; 3, 0, -1]')
|
|
const b = [9, 8, 3]
|
|
print(math.solve(A, b)) // [2, -1, 3]
|
|
}
|
|
} catch (err) {
|
|
console.log('Warning: To use numeric.js, the library must ' +
|
|
'be installed first via `npm install numeric`.')
|
|
}
|
|
|
|
/**
|
|
* By default, the function import does not allow overriding existing functions.
|
|
* Existing functions can be overridden by specifying option `override: true`
|
|
*/
|
|
math.import({
|
|
pi: 3.14
|
|
}, {
|
|
override: true
|
|
})
|
|
|
|
print(math.pi) // returns 3.14 instead of 3.141592653589793
|
|
|
|
/**
|
|
* Helper function to output a value in the console. Value will be formatted.
|
|
* @param {*} value
|
|
*/
|
|
function print (value) {
|
|
const precision = 14
|
|
console.log(math.format(value, precision))
|
|
}
|