diff --git a/docs/reference/functions/eigs.md b/docs/reference/functions/eigs.md index d0660638e..848969e35 100644 --- a/docs/reference/functions/eigs.md +++ b/docs/reference/functions/eigs.md @@ -31,16 +31,17 @@ Parameter | Type | Description Type | Description ---- | ----------- -{values: Array, vectors: Array} | {values: Matrix, vectors: Matrix} | Object containing eigenvalues (Array or Matrix) and eigenvectors (2D Array/Matrix). +{values: Array, vectors: Array} | {values: Matrix, vectors: Matrix} | Object containing eigenvalues (Array or Matrix) and eigenvectors (2D Array/Matrix with eigenvectors as columns).

Examples #

```js const H = [[5, 2.3], [2.3, 1]] -const ans = math.eigs(H) // returns {values: [E1,E2...sorted], vectors: [v1,v2.... corresponding vectors]} +const ans = math.eigs(H) // returns {values: [E1,E2...sorted], vectors: [v1,v2.... corresponding vectors as columns]} const E = ans.values const U = ans.vectors +math.multiply(H, math.column(U, 0)) // returns math.multiply(E[0], math.column(U, 0)) const UTxHxU = math.multiply(math.transpose(U), H, U) // rotates H to the eigen-representation E[0] == UTxHxU[0][0] // returns true ``` diff --git a/docs/reference/functions/nthRoots.md b/docs/reference/functions/nthRoots.md index 5a2dec07f..2701d997a 100644 --- a/docs/reference/functions/nthRoots.md +++ b/docs/reference/functions/nthRoots.md @@ -23,13 +23,13 @@ math.nthRoots(x, root) Parameter | Type | Description --------- | ---- | ----------- -`x` | number | BigNumber | Fraction | Complex | Array | Matrix | Number to be rounded +`x` | number | BigNumber | Fraction | Complex | Number to be rounded

Returns #

Type | Description ---- | ----------- -number | BigNumber | Fraction | Complex | Array | Matrix | Rounded value +number | BigNumber | Fraction | Complex | Rounded value

Examples #

diff --git a/download.md b/download.md index ee5f244db..8269742c4 100644 --- a/download.md +++ b/download.md @@ -29,7 +29,7 @@ Math.js can be downloaded or linked from various content delivery networks: unpkg - https://unpkg.com/mathjs@7.0.0/ + https://unpkg.com/mathjs@7.0.1/ cdnjs @@ -47,18 +47,18 @@ Here some direct download links from [unpkg](https://unpkg.com):
- - Development (version 7.0.0) + + Development (version 7.0.1) - 1820 kB, uncompressed with comments + 1822 kB, uncompressed with comments
- - Production (version 7.0.0) + + Production (version 7.0.1) diff --git a/examples/browser/angle_configuration.html b/examples/browser/angle_configuration.html index 63f4021a9..774554260 100644 --- a/examples/browser/angle_configuration.html +++ b/examples/browser/angle_configuration.html @@ -15,7 +15,7 @@ } - + diff --git a/examples/browser/angle_configuration.html.md b/examples/browser/angle_configuration.html.md index e3621d3d2..aea782f2d 100644 --- a/examples/browser/angle_configuration.html.md +++ b/examples/browser/angle_configuration.html.md @@ -24,7 +24,7 @@ File: [angle_configuration.html](angle_configuration.html) (click for a live dem } - + diff --git a/examples/browser/basic_usage.html b/examples/browser/basic_usage.html index 2f32ab073..096c530d4 100644 --- a/examples/browser/basic_usage.html +++ b/examples/browser/basic_usage.html @@ -3,7 +3,7 @@ math.js | basic usage - + diff --git a/examples/browser/basic_usage.html.md b/examples/browser/basic_usage.html.md index 3db92e882..6b1ca8bfa 100644 --- a/examples/browser/basic_usage.html.md +++ b/examples/browser/basic_usage.html.md @@ -12,7 +12,7 @@ File: [basic_usage.html](basic_usage.html) (click for a live demo) math.js | basic usage - + diff --git a/examples/browser/currency_conversion.html b/examples/browser/currency_conversion.html index 2601a44e3..86eaa427b 100644 --- a/examples/browser/currency_conversion.html +++ b/examples/browser/currency_conversion.html @@ -4,7 +4,7 @@ math.js | currency conversion - + - + diff --git a/examples/browser/custom_separators.html.md b/examples/browser/custom_separators.html.md index 412ec1ca2..929fc695d 100644 --- a/examples/browser/custom_separators.html.md +++ b/examples/browser/custom_separators.html.md @@ -24,7 +24,7 @@ File: [custom_separators.html](custom_separators.html) (click for a live demo) } - + diff --git a/examples/browser/plot.html b/examples/browser/plot.html index c3038ee5b..c4eb7efc7 100644 --- a/examples/browser/plot.html +++ b/examples/browser/plot.html @@ -3,7 +3,7 @@ math.js | plot - + diff --git a/examples/browser/plot.html.md b/examples/browser/plot.html.md index d5307e883..b4b922efe 100644 --- a/examples/browser/plot.html.md +++ b/examples/browser/plot.html.md @@ -12,7 +12,7 @@ File: [plot.html](plot.html) (click for a live demo) math.js | plot - + diff --git a/examples/browser/pretty_printing_with_mathjax.html b/examples/browser/pretty_printing_with_mathjax.html index 7b248a07f..1885b5210 100644 --- a/examples/browser/pretty_printing_with_mathjax.html +++ b/examples/browser/pretty_printing_with_mathjax.html @@ -4,7 +4,7 @@ math.js | pretty printing with MathJax - +