mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
Fixed some links and added styling for blockquote
This commit is contained in:
parent
757680d139
commit
cb6ffe21cf
@ -239,6 +239,13 @@ pre code {
|
||||
padding: inherit;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: #777;
|
||||
border-left: 0.3em solid #ddd;
|
||||
margin: 1em 1em;
|
||||
padding: 0 2em;
|
||||
}
|
||||
|
||||
#commandline {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
|
||||
@ -34,8 +34,8 @@ console.log(simplified.eval({x: 4})); // 12
|
||||
|
||||
For more details on the theory of expression simplification, see:
|
||||
|
||||
- http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions
|
||||
- https://en.wikipedia.org/wiki/Symbolic_computation#Simplification
|
||||
- [Strategies for simplifying math expressions (Stackoverflow)](http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions)
|
||||
- [Symbolic computation - Simplification (Wikipedia)](https://en.wikipedia.org/wiki/Symbolic_computation#Simplification)
|
||||
|
||||
|
||||
<h2 id="derivative">Derivative <a href="#derivative" title="Permalink">#</a></h2>
|
||||
@ -61,4 +61,4 @@ console.log(dh.eval({x: 3})); // '7'
|
||||
|
||||
The rules used by `math.derivative` can be found on Wikipedia:
|
||||
|
||||
- http://en.wikipedia.org/wiki/Differentiation_rules
|
||||
- [Differentiation rules (Wikipedia)](http://en.wikipedia.org/wiki/Differentiation_rules)
|
||||
|
||||
@ -12,8 +12,8 @@ second parameter. If there are multiple variables in the expression,
|
||||
it will return a partial derivative.
|
||||
|
||||
This uses rules of differentiation which can be found here:
|
||||
http://en.wikipedia.org/wiki/Differentiation_rules
|
||||
|
||||
- [Differentiation rules (Wikipedia)](http://en.wikipedia.org/wiki/Differentiation_rules)
|
||||
|
||||
<h2 id="syntax">Syntax <a href="#syntax" title="Permalink">#</a></h2>
|
||||
|
||||
|
||||
@ -26,9 +26,8 @@ and can be used as a basis to built a set of custom rules.
|
||||
|
||||
For more details on the theory, see:
|
||||
|
||||
- http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions
|
||||
- https://en.wikipedia.org/wiki/Symbolic_computation#Simplification
|
||||
|
||||
- [Strategies for simplifying math expressions (Stackoverflow)](http://stackoverflow.com/questions/7540227/strategies-for-simplifying-math-expressions)
|
||||
[Symbolic computation - Simplification (Wikipedia)](https://en.wikipedia.org/wiki/Symbolic_computation#Simplification)
|
||||
|
||||
<h2 id="syntax">Syntax <a href="#syntax" title="Permalink">#</a></h2>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user