-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.61 KB
/
index.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
<html>
<head>
<link href="https://episphere.github.io/gps/gps.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<hr>
<h1>
<b style="font-family:fantasy">f<sub>min</sub> Search</b>
<br>
<sup style="font-size:small;font-weight:bold">
[<a href="https://github.com/episphere/fminsearch" target="_blank">Code</a>
] [<a href="https://observablehq.com/@episphere/fminsearch" target="_blank">Notebook</a>
] [<a href="https://github.com/episphere/fminsearch/issues" target="_blank">Issues</a>
] [<a href="https://github.com/episphere/fminsearch/wiki/fminSearch" target="_blank">Docs</a>
]
</sup>
</h1>
<hr>
<h3>Examples </h3>
<p>You can put the equation in the text area below, it's URL, or you can select from drop down <button id="demo">demo</button>.</p>
<textarea id="textAreaEq" style="height:100"></textarea><br>
<select id="modelSel">
<option>logistic</option>
<option>rational</option>
<option>...</option>
<option>Custom</option>
</select>
<button>Load test data</button>
<button>Load data</button>
<button>Fit model</button>
<table>
<tr><td>
<textarea id="textAreaData" style="height:500"></textarea>
</td><td>
<div id="graphDiv"></div>
</td></tr>
</table>
</head>
<body>
</body>
<script src="./index.js" defer></script>
<!-- <script src="fminsearch.js"></script> -->
</html>