-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAUTHORS.html
346 lines (323 loc) · 12.5 KB
/
AUTHORS.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<!DOCTYPE html>
<html lang="en" data-content_root="./">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>4.1.1. Authors — Scientific Python Lectures</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=03e43079" />
<link rel="stylesheet" type="text/css" href="_static/nature.css?v=c29d3f28" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
<link rel="stylesheet" type="text/css" href="https://unpkg.com/[email protected]/build/base-min.css" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery.css?v=d2d258e8" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-binder.css?v=f4aeca0c" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-dataframe.css?v=2082cf3c" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-rendered-html.css?v=1277b6f3" />
<script src="_static/documentation_options.js?v=5c1ee5ea"></script>
<script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
<script src="_static/copybutton.js?v=0729d509"></script>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="_static/scroll_highlight_toc.js?v=cbac5d29"></script>
<link rel="icon" href="_static/favicon.ico"/>
<link rel="author" title="About these documents" href="about.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="prev" title="4. About the Scientific Python Lectures" href="about.html" />
<script defer data-domain="lectures.scientific-python.org" src="https://views.scientific-python.org/js/script.js"></script>
</head><body>
<!-- Use the header to add javascript -->
<script type="text/javascript">
// Function to toggle tip div
function toggle_tip_div(obj) {
$(obj).find("p.summary").remove();
var content = $(obj).text();
var html = $(obj).html();
if ($(obj).hasClass("collapsed")) {
// Expand
$(obj).html('<p class="summary"><img src="_static/minus.png"></p>' + html);
} else {
// Collapse
if(content.length > 50) {
content = content.substr(0, 47);
}
$(obj).html('<p class="summary"><img src="_static/plus.png">' + content + '...</p>' + html);
}
$(obj).toggleClass("collapsed");
}
$(document).ready(function () {
$(".tip").each(function() {
$(this).find("p.admonition-title").remove();
});
// Collapse all tips and add plus sign
$(".tip").each(function() { toggle_tip_div($(this)); });
$(".tip")
.click(function(event){
// Change state of the global button
$('div.related li.transparent').removeClass('transparent');
toggle_tip_div($(this));
if (event.target.tagName.toLowerCase() != "a") {
return true; //Makes links clickable
}
});
});
</script>
<div class="related" role="navigation" aria-label="Related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="about.html" title="4. About the Scientific Python Lectures"
accesskey="P">previous</a></li>
<li class="nav-item nav-item-0"><a href="index.html">Scientific Python Lectures</a> »</li>
<li class="nav-item nav-item-1"><a href="about.html" accesskey="U"><span class="section-number">4. </span>About the Scientific Python Lectures</a> »</li>
<li class="nav-item nav-item-this"><a href=""><span class="section-number">4.1.1. </span>Authors</a></li>
<!-- Insert a tip toggle in the navigation bar -->
<li class="left">
<!-- On click, expand all tips -->
<!--
<a>
<img src="_static/plus.png"
alt="Expand tips" style="padding: 1ex;"/>
<span class="hiddenlink">Collapse document to compact view</span>
</a>
-->
</li>
<li class="right edit_on_github"><a href="https://github.com/scipy-lectures/scientific-python-lectures/edit/main/AUTHORS.rst">Edit
<span class="tooltip">
Improve this page:<br/>Edit it on Github.
</span>
</a>
</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<section id="authors">
<h1><span class="section-number">4.1.1. </span>Authors<a class="headerlink" href="#authors" title="Link to this heading">¶</a></h1>
<section id="editors">
<h2><span class="section-number">4.1.1.1. </span>Editors<a class="headerlink" href="#editors" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Gaël Varoquaux</p></li>
<li><p>Emmanuelle Gouillart</p></li>
<li><p>Olav Vahtras</p></li>
<li><p>Pierre de Buyl</p></li>
<li><p>K. Jarrod Millman</p></li>
<li><p>Stéfan van der Walt</p></li>
</ul>
</section>
<section id="chapter-authors">
<h2><span class="section-number">4.1.1.2. </span>Chapter authors<a class="headerlink" href="#chapter-authors" title="Link to this heading">¶</a></h2>
<p>Listed by alphabetical order.</p>
<ul class="simple">
<li><p>Christopher Burns</p></li>
<li><p>Adrian Chauve</p></li>
<li><p>Robert Cimrman</p></li>
<li><p>Christophe Combelles</p></li>
<li><p>André Espaze</p></li>
<li><p>Emmanuelle Gouillart</p></li>
<li><p>Mike Müller</p></li>
<li><p>Fabian Pedregosa</p></li>
<li><p>Didrik Pinte</p></li>
<li><p>Nicolas Rougier</p></li>
<li><p>Gaël Varoquaux</p></li>
<li><p>Pauli Virtanen</p></li>
<li><p>Zbigniew Jędrzejewski-Szmek</p></li>
<li><p>Valentin Haenel (editor from 2011 to 2015)</p></li>
</ul>
</section>
<section id="additional-contributions">
<h2><span class="section-number">4.1.1.3. </span>Additional Contributions<a class="headerlink" href="#additional-contributions" title="Link to this heading">¶</a></h2>
<p>Listed by alphabetical order</p>
<ul class="simple">
<li><p>Osayd Abdu</p></li>
<li><p>arunpersaud</p></li>
<li><p>Ross Barnowski</p></li>
<li><p>Sebastian Berg</p></li>
<li><p>Lilian Besson</p></li>
<li><p>Matthieu Boileau</p></li>
<li><p>Joris Van den Bossche</p></li>
<li><p>Michael Boyle</p></li>
<li><p>Matthew Brett</p></li>
<li><p>BSGalvan</p></li>
<li><p>Lars Buitinck</p></li>
<li><p>Pierre de Buyl</p></li>
<li><p>Ozan Çağlayan</p></li>
<li><p>Lawrence Chan</p></li>
<li><p>Adrien Chauve</p></li>
<li><p>Robert Cimrman</p></li>
<li><p>Christophe Combelles</p></li>
<li><p>David Cournapeau</p></li>
<li><p>Dave</p></li>
<li><p>dogacan dugmeci</p></li>
<li><p>Török Edwin</p></li>
<li><p>egens</p></li>
<li><p>Andre Espaze</p></li>
<li><p>André Espaze</p></li>
<li><p>Loïc Estève</p></li>
<li><p>Corey Farwell</p></li>
<li><p>Tim Gates</p></li>
<li><p>Stuart Geiger</p></li>
<li><p>Olivier Georg</p></li>
<li><p>Daniel Gerigk</p></li>
<li><p>Robert Gieseke</p></li>
<li><p>Philip Gillißen</p></li>
<li><p>Ralf Gommers</p></li>
<li><p>Emmanuelle Gouillart</p></li>
<li><p>Julia Gustavsen</p></li>
<li><p>Omar Gutiérrez</p></li>
<li><p>Matt Haberland</p></li>
<li><p>Valentin Haenel</p></li>
<li><p>Pierre Haessig</p></li>
<li><p>Bruno Hanzen</p></li>
<li><p>Michael Hartmann</p></li>
<li><p>Jonathan Helmus</p></li>
<li><p>Andreas Hilboll</p></li>
<li><p>Himanshu</p></li>
<li><p>Julian Hofer</p></li>
<li><p>Tim Hoffmann</p></li>
<li><p>B. Hohl</p></li>
<li><p>Tarek Hoteit</p></li>
<li><p>Gert-Ludwig Ingold</p></li>
<li><p>Zbigniew Jędrzejewski-Szmek</p></li>
<li><p>Thouis (Ray) Jones</p></li>
<li><p>jorgeprietoarranz</p></li>
<li><p>josephsalmon</p></li>
<li><p>Greg Kiar</p></li>
<li><p>kikocorreoso</p></li>
<li><p>Vince Knight</p></li>
<li><p>LFP6</p></li>
<li><p>Manuel López-Ibáñez</p></li>
<li><p>Marco Mangan</p></li>
<li><p>Nicola Masarone</p></li>
<li><p>John McLaughlin</p></li>
<li><p>mhemantha</p></li>
<li><p>michelemaroni89</p></li>
<li><p>K. Jarrod Millman</p></li>
<li><p>Mohammad</p></li>
<li><p>Zachary Moon</p></li>
<li><p>Mike Mueller</p></li>
<li><p>negm</p></li>
<li><p>John B Nelson</p></li>
<li><p>nicoguaro</p></li>
<li><p>Sergio Oller</p></li>
<li><p>Theofilos Papapanagiotou</p></li>
<li><p>patniharshit</p></li>
<li><p>Fabian Pedregosa</p></li>
<li><p>Philippe Pepiot</p></li>
<li><p>Tiago M. D. Pereira</p></li>
<li><p>Nicolas Pettiaux</p></li>
<li><p>Didrik Pinte</p></li>
<li><p>Evgeny Pogrebnyak</p></li>
<li><p>reverland</p></li>
<li><p>Maximilien Riehl</p></li>
<li><p>Kristian Rother</p></li>
<li><p>Nicolas P. Rougier</p></li>
<li><p>Pamphile Roy</p></li>
<li><p>Rutzmoser</p></li>
<li><p>Sander</p></li>
<li><p>João Felipe Santos</p></li>
<li><p>Mark Setchell</p></li>
<li><p>Helen Sherwood-Taylor</p></li>
<li><p>Shoeboxam</p></li>
<li><p>Simon</p></li>
<li><p>solarjoe</p></li>
<li><p>ssmiller</p></li>
<li><p>Scott Staniewicz</p></li>
<li><p>strpeter</p></li>
<li><p>surfer190</p></li>
<li><p>Bartosz Telenczuk</p></li>
<li><p>tommyod</p></li>
<li><p>Wes Turner</p></li>
<li><p>Akihiro Uchida</p></li>
<li><p>Utkarsh Upadhyay</p></li>
<li><p>Olav Vahtras</p></li>
<li><p>Stéfan van der Walt</p></li>
<li><p>Gaël Varoquaux</p></li>
<li><p>Nelle Varoquaux</p></li>
<li><p>Olivier Verdier</p></li>
<li><p>VirgileFritsch</p></li>
<li><p>Pauli Virtanen</p></li>
<li><p>Yosh Wakeham</p></li>
<li><p>yasutomo57jp</p></li>
</ul>
<p><div style="clear: both"></div></p>
</section>
</section>
<div class="clearer"></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<div>
<h3><a href="index.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">4.1.1. Authors</a><ul>
<li><a class="reference internal" href="#editors">4.1.1.1. Editors</a></li>
<li><a class="reference internal" href="#chapter-authors">4.1.1.2. Chapter authors</a></li>
<li><a class="reference internal" href="#additional-contributions">4.1.1.3. Additional Contributions</a></li>
</ul>
</li>
</ul>
</div>
<div>
<h4>Previous topic</h4>
<p class="topless"><a href="about.html"
title="previous chapter"><span class="section-number">4. </span>About the Scientific Python Lectures</a></p>
</div>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/AUTHORS.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<search id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="Related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="about.html" title="4. About the Scientific Python Lectures"
>previous</a></li>
<li class="nav-item nav-item-0"><a href="index.html">Scientific Python Lectures</a> »</li>
<li class="nav-item nav-item-1"><a href="about.html" ><span class="section-number">4. </span>About the Scientific Python Lectures</a> »</li>
<li class="nav-item nav-item-this"><a href=""><span class="section-number">4.1.1. </span>Authors</a></li>
<!-- Insert a tip toggle in the navigation bar -->
<li class="left">
<!-- On click, expand all tips -->
<!--
<a>
<img src="_static/plus.png"
alt="Expand tips" style="padding: 1ex;"/>
<span class="hiddenlink">Collapse document to compact view</span>
</a>
-->
</li>
<li class="right edit_on_github"><a href="https://github.com/scipy-lectures/scientific-python-lectures/edit/main/AUTHORS.rst">Edit
<span class="tooltip">
Improve this page:<br/>Edit it on Github.
</span>
</a>
</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2025.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
</div>
</body>
</html>