-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
54 lines (49 loc) · 1.41 KB
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
<html>
<head>
<meta charset = "utf-8">
<title> Kriging Tool</title>
<script src=https://cdnjs.cloudflare.com/ajax/libs/mathjs/8.1.1/math.js></script>
<link rel = "stylesheet" href="style.css">
</head>
<body>
<div class= "grid"> </div>
<div class = "minev"> </div>
<table class = "model">
<tr>
<th colspan="2" >Exponential Model Parameters</th>
</tr>
<tr>
<th>C</th>
<th>A</th>
</tr>
<tr>
<th><input class = "c" value="1800"></th>
<th><input class = "a" value = "300"></th>
</tr>
</table>
<table class = "mousepos">
<tr>
<th>X</th>
<th>Y</th>
<th>Value</th>
<th>Min Ev</th>
</tr>
<tr >
<th>0</th>
<th>0</th>
<th>0</th>
<th>0</th>
</tr>
</table>
<button class = "clear" type="button">Clear</button>
<button class = "krig" type="button">Krig</button>
<table class="input">
<tr class= "top">
<th>X</th>
<th>Y</th>
<th>Value</th>
</tr>
</table>
</body>
<script src = "script.js"> </script>
</html>