-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteaching.html
99 lines (79 loc) · 3.58 KB
/
teaching.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ru-Yuan Lab</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<!--Header image part-->
<div class='header'>
<img class='headerimg' src='./img/background.jpg'>
</div>
<!--Navigation bar part---->
<div align='center'>
<nav>
<ul>
<li><a href='index.html'>Home</a></li>
<li><a href='research.html'>Research</a></li>
<li><a href='people.html'>People</a></li>
<li><a href='publications.html'>Publications</a></li>
<li><a href='resources.html'>Resources</a></li>
<li><a class='active' href='teaching.html'>Teaching</a></li>
</ul>
</nav>
</div>
<!--Main part, we makde it as two columns-->
<div style="text-align: center;">
<table style="width: 100%" border="0">
<col style="width: 50%;">
<col style="width: 50%;">
<tr valign="top">
<td align="left">
<!--Blogs and Videos-->
<p id='labnews'> Courses </p>
<ul class='newsdate'>
<li> Graduate Course: <br>
PSY9007 <a href='./teaching/CompCogAI/CompCogAI.html'>Computational Cognition and Artificial Intelligence</a>
</li>
<li> Undegraduate Course: <br>
<a href='./teaching/HumanMind/HumanMind.html'>Exploration of Human Mind</a> <br>
<a href='./teaching/MathModel/MathematicalModeling.html'>Mathematical Modeling in Psychology</a>
</li>
<!-- <li> Writing tips for Chinese students in Cognitive Neuroscience (in Chinese)
<ul class="newsitem">
<li> <a href='./resources/writing/writing1.html'>1. Overview</a></li>
<li> <a href='./resources/writing/writing2.html'>2. General format (1)</a></li>
<li> <a href='./resources/writing/writing3.html'>3. General format (2)</a></li>
<li> <a href='./resources/writing/writing4.html'>4. How to write results</a></li>
<li> <a href='./resources/writing/writing5reply.html'>5. How to write a response letter</a></li>
<li> <a href='./resources/writing/writing6grammaticaltense.html'>6. How to use tense</a></li>
</ul>
</li> -->
</ul>
</td>
<td align='left'>
<!--Resource section-->
<p id='labnews'> </p>
<ul class='newsdate'>
<!-- <li> Utility functions
<ul class="newsitem">
<li><a href="https://github.com/ruyuanzhang/RZutil">Ru-Yuan Zhang's matlab utility function repository </a></li>
<li><a href="https://github.com/ruyuanzhang/RZutilpy">Ru-Yuan Zhang's python utility function repository </a></li>
</ul>
</li>
<li> Paper related code
<ul class="newsitem">
<li>
Zhang, R-Y., et al (2020). <em>PLoS computational biology</em> <br> <a href='https://github.com/ruyuanzhang/noisecorrelation'>Github code</a>
</li>
</ul>
</li> -->
</ul>
</td>
</tr>
</table>
<br>
</div>
</body>
</html>