Skip to content

Commit fbe7111

Browse files
0 parents  commit fbe7111

File tree

1,743 files changed

+171140
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,743 files changed

+171140
-0
lines changed

.buildinfo

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 4df3bbc301f5324903f2b2fdcdb005d6
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

.nojekyll

Whitespace-only changes.

AUTHORS.html

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

0 commit comments

Comments
 (0)