add error handling & numpy to readme
[matrixnullspace.com.git] / index.php
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset='utf-8'>
5 <title>matrixnullspace</title>
6 <link rel='stylesheet' href='/style.css'>
7 <script type='text/javascript' src='/js/jquery.js'></script>
8 <script type='text/javascript' src='/js/matrix.js'></script>
9 </head>
10 <body>
11 <div id='container'>
12 <h1>matrix.py</h1>
13 <div id='description'>
14 Find the kernel, determinant and eigenvalues of a given matrix.
15 </div>
16 <form>
17 <textarea id="matrix">2 3 5
18 -4 2 3
19 0 0 0</textarea></br>
20 <a id='submit' href='#'>./calculate</a>
21 </form>
22 <ul id='results'></ul>
23 <div id='clear'></div>
24 <div id="footer">
25 <h2><a href="http://dylansserver.com">dylansserver.com</a>
26 </div>
27 </div>
28 </body>
29 </html>