-
Notifications
You must be signed in to change notification settings - Fork 175
/
demo.html
93 lines (74 loc) · 4.24 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
<link rel="SHORTCUT ICON" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="resources/style.css">
<title>Numeric Javascript</title>
<body>
<a href="https://github.com/sloisel/numeric"><img style="position: absolute; top: 0; right: 0; border: 0;" src="resources/forkme.png" alt="Fork me on GitHub"></a>
<table class="nav"><tr class="nav">
<td class="nav" style="width:150px;"><img src="resources/paperplane-small.png">
<td class="navmain">
<b>Numeric Javascript</b>
<ul class="nav">
<li class="nav"><a id = "linkhome" class="nav" href="index.html">HOME</a></li>
<li class="nav"><a id = "linkworkshop" class="nav" href="workshop.php">WORKSHOP</a></li>
<li class="nav"><a id = "linkbenchmarks" class="nav" href="benchmark.html">BENCHMARKS</a></li>
<li class="nav"><a id = "linkdoc" class="nav" href="documentation.html">DOCUMENTATION</a></li>
</ul>
<ul class="nav">
<li class="sep">DOWNLOADS:</li>
<li class="nav"><a id = "linklib" class="dl" href="lib/numeric-1.0.0.js">numeric-1.0.0.js</a></li>
<li class="nav"><a id = "linklibmin" class="dl" href="lib/numeric-1.0.0.min.js">numeric-1.0.0.min.js</a></li>
</ul>
</table>
<a href="http://www.numericjs.com/">Numeric Javascript</a>
is a library for numerical computations in Javascript. You can write Javascript
programs that manipulate matrices, solve linear problems, find eigenvalues and
solve optimization problems in the browser using <a href="workshop.php">Numeric Workshop</a>
or in your own web pages by <a href="lib/numeric.js">downloading numeric.js</a>. You can also use
Numeric Javascript outside the browser in any Javascript environment.
<div style="float:right; text-align:center; margin-top:15px;">
<a href="workshop.php"><img src="resources/workshop.png" width=400><br>
Numeric Workshop</a>
</div>
<h1>Examples</h1>
Each of these examples runs in the <a href="workshop.php">Workshop</a>.
<ul>
<li> <a href="workshop.php?link=e59a653a5dacc4d07ba621997af8db88d3f9823560634d9a77fd721ca21a94bf">Linear algebra</a>
<li> <a href="workshop.php?link=1f7f8d27dd34a7da5d3c5f8d85d04da39c7bb0cce445a516c8caf70e793718ed">Complex numbers</a>
<li> <a href="workshop.php?link=4996ea0eba234054d4d9733ec94ce35d290ea027d6e77a72b2fba7d3fe25c852">Splines</a>
<li> <a href="workshop.php?link=b61a0e9354e4f8199bcb0024ac2c7e905a476b6d28bac77ecbde3934b59b2566">ODE solver</a>
<li> <a href="workshop.php?link=24e1118d5466a7db4d089d84f95691a7d1350d76a93663c5030a6700a387c0ec">Unconstrained optimization</a>
<li> <a href="workshop.php?link=1a153efe9d69637aac68630f06a5cf7c0b574d11a8ef23cf8604aa7962070e6f">PDE and sparse linear algebra</a>
</ul>
<h1>Workshop</h1>
The <a href="workshop.php">Workshop</a> is a Javascript console that can be used to experiment with
Numeric Javascript by writing a "Worksheet" of Javascript commands. This Worksheet can be saved and
shared simply by sharing a permanent link to the Worksheet.<br><br>
The Workshop also includes plotting facilities using the
<a href="http://code.google.com/p/flot/">Flot</a> plotting library.
<h1>Performance</h1>
Although Javascript does not reach the same performance as native programs, the Numeric Javascript
library is carefully tuned to obtain the best possible performance for a Javascript program. You
can compare the performance of Numeric, <a href="http://sylvester.jcoglan.com/">Sylvester</a> and
<a href="http://code.google.com/closure/">Google Closure</a>'s
<a href="http://code.google.com/p/closure-library/source/browse/trunk/closure/goog/math/matrix.js">Matrix</a>
object using our <a href="benchmark.html">Benchmark</a>.
<h1>Correctness</h1>
Numeric Javascript contains a set of unit tests that are automatically run in several browsers. You can
view the <a href="report.html">report</a> that is automatically generated.
<h1>Development</h1>
We have a public <a href="https://github.com/sloisel/numeric/">github</a> repository.
<h1>Community</h1>
Join the discussion on our <a href="http://groups.google.com/group/numericjs">Google Group</a>.
<h1>About the Author</h1>
I am <a href="http://www.ma.hw.ac.uk/~loisel/">Sébastien Loisel</a>.
You can use the following bibtex entry:
<pre>
@misc{
numericjs,
Author = {S{\'e}bastien Loisel},
Title = {Numeric Javascript},
howpublished = {\url{http://www.numericjs.com/}} }
</pre>
<br><br><br>