-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 888 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 888 Bytes
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
<html>
<head>
<script type="text/javascript" src="jacobi.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
Error : <input type="text" id = "convergence" value="1E-4"> <br>
N :<input type="text" id = "Nstate" value="10">
<input type="button" onclick="rand();" value = "Random Matrix">
<br>
<h1>Matrix</h1>
<textarea rows="10" cols="50" id= "matrix">
[[1.0, 1.0, 1.0],
[1.0, 1.0, 1.0],
[1.0, 1.0, 1.0]]
</textarea>
<br>
<input type="button" onclick="start();" value="Start">
<input type="button" onclick="stop();" value="Stop">
<div id="answer"></div>
<h1>Eigenvalues</h1>
<textarea rows="3" cols="50" id= "eigen">
</textarea>
<h1>Eigenvectors</h1>
<textarea rows="10" cols="50" id= "vector">
</textarea>
</body>
</html>