-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
43 lines (43 loc) · 1.76 KB
/
code.html
File metadata and controls
43 lines (43 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>Erick Ruiz</title>
<!-- link to main stylesheet -->
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="cv/eruiz_resume">Resume</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="code.html">Code</a></li>
</ul>
</nav>
<div class="container">
<div class="blurb">
<p>
As a Ph.D. student, I worked on a diverse set of projects, mostly
in the areas of applied mathematics, computer science, and physics.
Examples of my programming projects include:
<ul>
<li>Parameter Estimation in Dynamical Systems: C++ library
designed to perform gradient descent optimization on systems
of ordinary differential equations for parameter
estimation.</li>
<li>SVDenoise: Python library designed to remove noise from
images using an algorithm based on the singular value
decomposition.</li>
<li>GuruDiff: Python library designed to implement forward and
reverse mode automatic differentiation for gradient
calculations.</li>
<li>Computational Photography: C++ library designed for
fundamental computational photography operations as part of
a semester-long project for MIT 6.865.</li>
</ul>
</p>
</div><!-- /.blurb -->
</div><!-- /.container -->
</body>
</html>