-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>together00's Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
main {
margin-left: 100px;
margin-top: 20px;
line-height: 1.5;
}
body::before {
content: "";
display: block;
border-top: 20px solid #FFF;
}
a:link {
color: DarkOrchid;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: DarkOrchid;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: Pink;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<main>
<section id="articles">
<h1>Articles</h1>
<ol>
<li>
<strong>What properties do the column (row) operations change in a matrix?</strong><br>
[<a href="https://together00.github.io/Row%20%28column%29%20operations.pdf">PDF</a>]
<details>
<summary>Abstract</summary>
This blog shows what properties the row operations change in a matrix.
</details>
<details>
<summary>Errata</summary>
<ul></ul>
</details>
</li>
<li>
<strong>Ordinary Differential Equation and Gradient Descent</strong><br>
[<a href="https://together00.github.io/ODE%20and%20GD.pdf">PDF</a>]
<details>
<summary>Abstract</summary>
This blog explains the relationship between Ordinary Differential Equation (ODE) and Gradient Descent (GD).
</details>
<details>
<summary>Errata</summary>
<ul></ul>
</details>
</li>
</ol>
</section>
</main>
</body>
</html>