forked from scipy-lectures/scipy-lectures.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Webpages hosting for the SciPy Lecture Notes
License
scipyargentina/scipy-lectures.github.com
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Scipy-Lecture-Notes — Scipy lecture notes</title> <link rel="stylesheet" href="_static/nature.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/gallery.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', VERSION: '2018.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true, SOURCELINK_SUFFIX: '.txt' }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/copybutton.js"></script> <link rel="search" title="Search" href="search.html" /> <link rel="stylesheet" href="https://unpkg.com/[email protected]/build/base-min.css"> <script type="text/javascript"> $(function () { // Highlight the table of content as we scroll sections = {}, i = 0, url = document.URL.replace(/#.*$/, ""), current_section = 0; // Grab positions of our sections $('.headerlink').each(function(){ sections[this.href.replace(url, '')] = $(this).offset().top - 50; }); $(window).scroll(function(event) { var pos = $(window).scrollTop(); // Highlight the current section $('a.internal').parent().removeClass('active'); for(i in sections){ if(sections[i] > pos){ break; }; if($('a.internal[href$="' + i + '"]').is(':visible')){ current_section = i; }; } $('a.internal[href$="' + current_section + '"]').parent().addClass('active'); $('a.internal[href$="' + current_section + '"]').parent().parent().parent().addClass('active'); $('a.internal[href$="' + current_section + '"]').parent().parent().parent().parent().parent().addClass('active'); }); }); </script> </head> <body> <!-- Use the header to add javascript --> <script type="text/javascript"> // Function to collapse the tip divs function collapse_tip_div(obj){ // Update the representation on the tip div based on whether it // has the 'collapsed' css class or not: we only want to // collapse divs that are not already collapsed if($(obj).hasClass("collapsed")) { } else { $(obj).find("p.summary").remove(); var content = $(obj).text(); var html = $(obj).html(); if(content.length > 40) { if ($.browser.msie) { // We start at '3' to avoid 'tip', as IE // does not count whitespace var content = content.substr(3, 50); } else { // We start at '5' to avoid 'tip ' var content = content.substr(5, 50); } } $(obj).html('<p class="summary"><img src="_static/plus.png">' + content + '...</p>' + html); } } </script> <script type="text/javascript"> $(function () { $(".tip") .click(function(event){ $(this).toggleClass("collapsed"); // Change state of the global button $('div.related li.transparent').removeClass('transparent') $(this).find("p.summary").remove(); if($(this).hasClass("collapsed")) { var content = $(this).text(); var html = $(this).html(); if(content.length > 40) { if ($.browser.msie) { // We start at '3' to avoid 'tip', as IE // does not count whitespace var content = content.substr(3, 50); } else { // We start at '5' to avoid 'tip ' var content = content.substr(5, 50); } } $(this).html('<p class="summary"><img src="_static/plus.png">' + content + '...</p>' + html); } if (event.target.tagName.toLowerCase() != "a") { return true; //Makes links clickable } }); }); </script> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="nav-item nav-item-0"><a href="index.html">Scipy lecture notes</a> »</li> <!-- Insert a menu in the navigation bar --> <li class="left"> <!-- On click toggle the 'tip' on or off--> <a onclick="$('.tip').each(function (index, obj) { collapse_tip_div(obj); }); $('.tip').addClass('collapsed'); $('.left').addClass('transparent');"> <img src="_static/minus.png" alt="Collapse to compact view" 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/scipy-lecture-notes/edit/master/README.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"> <a class="reference external image-reference" href="http://dx.doi.org/10.5281/zenodo.31521"><img alt="https://zenodo.org/badge/doi/10.5281/zenodo.31521.svg" src="https://zenodo.org/badge/doi/10.5281/zenodo.31521.svg" /></a> <a class="reference external image-reference" href="https://travis-ci.org/scipy-lectures/scipy-lecture-notes"><img alt="https://travis-ci.org/scipy-lectures/scipy-lecture-notes.svg?branch=master" src="https://travis-ci.org/scipy-lectures/scipy-lecture-notes.svg?branch=master" /></a> <div class="section" id="scipy-lecture-notes"> <h1>Scipy-Lecture-Notes<a class="headerlink" href="#scipy-lecture-notes" title="Permalink to this headline">¶</a></h1> <p>This repository gathers some lecture notes on the scientific Python ecosystem that can be used for a full course of scientific computing with Python.</p> <p>These documents are written with the rest markup language (<code class="docutils literal"><span class="pre">.rst</span></code> extension) and built using Sphinx: <a class="reference external" href="http://sphinx.pocoo.org/">http://sphinx.pocoo.org/</a>.</p> <p>You can view the online version at: <a class="reference external" href="http://scipy-lectures.org">http://scipy-lectures.org</a></p> <div class="section" id="reusing-and-distributing"> <h2>Reusing and distributing<a class="headerlink" href="#reusing-and-distributing" title="Permalink to this headline">¶</a></h2> <p>As stated in the <code class="docutils literal"><span class="pre">LICENSE.txt</span></code> file, this material comes with no strings attached. Feel free to reuse and modify for your own teaching purposes.</p> <p>However, we would like this reference material to be improved over time, thus we encourage people to contribute back changes. These will be reviewed and edited by the original authors and the editors.</p> </div> <div class="section" id="building-and-contributing"> <h2>Building and contributing<a class="headerlink" href="#building-and-contributing" title="Permalink to this headline">¶</a></h2> <p>The file <cite>CONTRIBUTING.rst</cite> contains instructions to build from source and to contribute.</p> <p><div style="clear: both"></div></p> </div> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <div class="sidebartoc"> <h3><a href="index.html">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Scipy-Lecture-Notes</a><ul> <li><a class="reference internal" href="#reusing-and-distributing">Reusing and distributing</a></li> <li><a class="reference internal" href="#building-and-contributing">Building and contributing</a></li> </ul> </li> </ul> </div> <div class="script_container"> <script> (function() { var cx = '004523248466141510607:hgv2yimrahw'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <gcse:search></gcse:search> </div> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="nav-item nav-item-0"><a href="index.html">Scipy lecture notes</a> »</li> <!-- Insert a menu in the navigation bar --> <li class="left"> <!-- On click toggle the 'tip' on or off--> <a onclick="$('.tip').each(function (index, obj) { collapse_tip_div(obj); }); $('.tip').addClass('collapsed'); $('.left').addClass('transparent');"> <img src="_static/minus.png" alt="Collapse to compact view" 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/scipy-lecture-notes/edit/master/README.rst">Edit <span class="tooltip"> Improve this page:<br/>Edit it on Github. </span> </a> </li> </ul> </div> <div class="footer" role="contentinfo"> © Copyright 2012,2013,2015,2016,2017,2018. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.3. </div> </body> </html>
About
Webpages hosting for the SciPy Lecture Notes
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- HTML 90.7%
- Python 4.3%
- Jupyter Notebook 3.7%
- Other 1.3%