mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
Released version 1.2.0
This commit is contained in:
parent
e3b74d4ff8
commit
8e16cef441
@ -1,7 +1,7 @@
|
||||
# History
|
||||
|
||||
|
||||
## not yet released, version 1.2.0
|
||||
## 2014-12-25, version 1.2.0
|
||||
|
||||
- Support for bitwise operations `bitAnd`, `bitNot`, `bitOr`, `bitXor`,
|
||||
`leftShift`, `rightArithShift`, and `rightLogShift`. Thanks @BigFav.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mathjs",
|
||||
"version": "1.1.2-SNAPSHOT",
|
||||
"version": "1.2.0",
|
||||
"main": "./dist/math.min.js",
|
||||
"ignore": [
|
||||
"coverage",
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
"name": "mathjs",
|
||||
"repo": "josdejong/mathjs",
|
||||
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.",
|
||||
"version": "1.1.2-SNAPSHOT",
|
||||
"version": "1.2.0",
|
||||
"main": "dist/math.min.js",
|
||||
"keywords": [
|
||||
"math",
|
||||
|
||||
875
dist/math.js
vendored
875
dist/math.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/math.map
vendored
2
dist/math.map
vendored
File diff suppressed because one or more lines are too long
18
dist/math.min.js
vendored
18
dist/math.min.js
vendored
File diff suppressed because one or more lines are too long
@ -41,8 +41,8 @@ print(str); // "0.6666666666666666"
|
||||
// a chain has a function .valueOf(), which returns the value hold by the chain.
|
||||
// This allows using it in regular operations. The function valueOf() acts the
|
||||
// same as function done().
|
||||
print(chain.valueOf()); // 0.66667
|
||||
print(chain + 2); // 2.66667
|
||||
print(chain.valueOf()); // 0.66667
|
||||
print(chain + 2); // 2.66667
|
||||
|
||||
// the function subset can be used to get or replace sub matrices
|
||||
var array = [[1, 2], [3, 4]];
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
module.exports = '1.1.2-SNAPSHOT';
|
||||
module.exports = '1.2.0';
|
||||
// Note: This file is automatically generated when building math.js.
|
||||
// Changes made in this file will be overwritten.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mathjs",
|
||||
"version": "1.1.2-SNAPSHOT",
|
||||
"version": "1.2.0",
|
||||
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.",
|
||||
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
|
||||
"contributors": [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user