1. Trang chủ
  2. » Công Nghệ Thông Tin

Python scientific lecture notes

356 1.9K 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Cấu trúc

  • I Getting started with Python for science

    • Scientific computing with tools and workflow

      • Why Python?

      • Scientific Python building blocks

      • The interactive workflow: IPython and a text editor

    • The Python language

      • First steps

      • Basic types

      • Control Flow

      • Defining functions

      • Reusing code: scripts and modules

      • Input and Output

      • Standard Library

      • Exception handling in Python

      • Object-oriented programming (OOP)

    • NumPy: creating and manipulating numerical data

      • The Numpy array object

      • Numerical operations on arrays

      • More elaborate arrays

      • Advanced operations

      • Some exercises

    • Matplotlib: plotting

      • Introduction

      • Simple plot

      • Figures, Subplots, Axes and Ticks

      • Other Types of Plots: examples and exercises

      • Beyond this tutorial

      • Quick references

    • Scipy : high-level scientific computing

      • File input/output: scipy.io

      • Special functions: scipy.special

      • Linear algebra operations: scipy.linalg

      • Fast Fourier transforms: scipy.fftpack

      • Optimization and fit: scipy.optimize

      • Statistics and random numbers: scipy.stats

      • Interpolation: scipy.interpolate

      • Numerical integration: scipy.integrate

      • Signal processing: scipy.signal

      • Image processing: scipy.ndimage

      • Summary exercises on scientific computing

    • Getting help and finding documentation

  • II Advanced topics

    • Advanced Python Constructs

      • Iterators, generator expressions and generators

      • Decorators

      • Context managers

    • Advanced Numpy

      • Life of ndarray

      • Universal functions

      • Interoperability features

      • Array siblings: chararray, maskedarray, matrix

      • Summary

      • Contributing to Numpy/Scipy

    • Debugging code

      • Avoiding bugs

      • Debugging workflow

      • Using the Python debugger

      • Debugging segmentation faults using gdb

    • Optimizing code

      • Optimization workflow

      • Profiling Python code

      • Making code go faster

      • Writing faster numerical code

    • Sparse Matrices in SciPy

      • Introduction

      • Storage Schemes

      • Linear System Solvers

      • Other Interesting Packages

    • Image manipulation and processing using Numpy and Scipy

      • Opening and writing to image files

      • Displaying images

      • Basic manipulations

      • Image filtering

      • Feature extraction

      • Measuring objects properties: ndimage.measurements

    • Mathematical optimization: finding minima of functions

      • Knowing your problem

      • A review of the different optimizers

      • Practical guide to optimization with scipy

      • Special case: non-linear least-squares

      • Optimization with constraints

    • Interfacing with C

      • Introduction

      • Python-C-Api

      • Ctypes

      • SWIG

      • Cython

      • Summary

      • Further Reading and References

      • Exercises

  • III Packages and applications

    • Sympy : Symbolic Mathematics in Python

      • First Steps with SymPy

      • Algebraic manipulations

      • Calculus

      • Equation solving

      • Linear Algebra

    • Scikit-image: image processing

      • Introduction and concepts

      • Input/output, data types and colorspaces

      • Image preprocessing / enhancement

      • Image segmentation

      • Measuring regions' properties

      • Data visualization and interaction

      • Feature extraction for computer vision

    • Traits: building interactive dialogs

      • Introduction

      • Example

      • What are Traits

      • References

    • 3D plotting with Mayavi

      • Mlab: the scripting interface

      • Interactive work

      • Slicing and dicing data: sources, modules and filters

      • Animating the data

      • Making interactive dialogs

      • Putting it together

    • scikit-learn: machine learning in Python

      • Loading an example dataset

      • Classification

      • Clustering: grouping observations together

      • Dimension Reduction with Principal Component Analysis

      • Putting it all together: face recognition

      • Linear model: from regression to sparsity

      • Model selection: choosing estimators and their parameters

    • Index

Nội dung

Python Scientific lecture notes Release 2013.2 beta (euroscipy 2013) EuroScipy tutorial team Editors: Valentin Haenel, Emmanuelle Gouillart, Gaël Varoquaux http://scipy-lectures.github.com November 15, 2013 (2013.2-beta-62-gfcfa2fc) Contents I Getting started with Python for science 2 1 Scientific computing with tools and workflow 4 1.1 Why Python? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.2 Scientific Python building blocks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 1.3 The interactive workflow: IPython and a text editor . . . . . . . . . . . . . . . . . . . . . . . . . 6 2 The Python language 10 2.1 First steps . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 2.2 Basic types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 2.3 Control Flow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 2.4 Defining functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 2.5 Reusing code: scripts and modules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 2.6 Input and Output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 2.7 Standard Library . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 2.8 Exception handling in Python . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 2.9 Object-oriented programming (OOP) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42 3 NumPy: creating and manipulating numerical data 44 3.1 The Numpy array object . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 3.2 Numerical operations on arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 3.3 More elaborate arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 3.4 Advanced operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 3.5 Some exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78 4 Matplotlib: plotting 83 4.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 4.2 Simple plot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 4.3 Figures, Subplots, Axes and Ticks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 4.4 Other Types of Plots: examples and exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93 4.5 Beyond this tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100 4.6 Quick references . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 5 Scipy : high-level scientific computing 106 5.1 File input/output: scipy.io . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107 5.2 Special functions: scipy.special . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107 5.3 Linear algebra operations: scipy.linalg . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108 5.4 Fast Fourier transforms: scipy.fftpack . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109 5.5 Optimization and fit: scipy.optimize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 5.6 Statistics and random numbers: scipy.stats . . . . . . . . . . . . . . . . . . . . . . . . . . 117 5.7 Interpolation: scipy.interpolate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119 5.8 Numerical integration: scipy.integrate . . . . . . . . . . . . . . . . . . . . . . . . . . . . 120 5.9 Signal processing: scipy.signal . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122 5.10 Image processing: scipy.ndimage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123 i 5.11 Summary exercises on scientific computing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128 6 Getting help and finding documentation 141 II Advanced topics 145 7 Advanced Python Constructs 147 7.1 Iterators, generator expressions and generators . . . . . . . . . . . . . . . . . . . . . . . . . . . 148 7.2 Decorators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152 7.3 Context managers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 160 8 Advanced Numpy 163 8.1 Life of ndarray . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 164 8.2 Universal functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 177 8.3 Interoperability features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 8.4 Array siblings: chararray, maskedarray, matrix . . . . . . . . . . . . . . . . . . . . . . 189 8.5 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192 8.6 Contributing to Numpy/Scipy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192 9 Debugging code 196 9.1 Avoiding bugs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 196 9.2 Debugging workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 199 9.3 Using the Python debugger . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 199 9.4 Debugging segmentation faults using gdb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204 10 Optimizing code 207 10.1 Optimization workflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207 10.2 Profiling Python code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 10.3 Making code go faster . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 211 10.4 Writing faster numerical code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212 11 Sparse Matrices in SciPy 215 11.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 215 11.2 Storage Schemes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 217 11.3 Linear System Solvers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 228 11.4 Other Interesting Packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 233 12 Image manipulation and processing using Numpy and Scipy 234 12.1 Opening and writing to image files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 235 12.2 Displaying images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 236 12.3 Basic manipulations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 238 12.4 Image filtering . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 240 12.5 Feature extraction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 244 12.6 Measuring objects properties: ndimage.measurements . . . . . . . . . . . . . . . . . . . . 247 13 Mathematical optimization: finding minima of functions 251 13.1 Knowing your problem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 252 13.2 A review of the different optimizers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 254 13.3 Practical guide to optimization with scipy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 261 13.4 Special case: non-linear least-squares . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 263 13.5 Optimization with constraints . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 265 14 Interfacing with C 267 14.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 267 14.2 Python-C-Api . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 268 14.3 Ctypes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 272 14.4 SWIG . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 275 14.5 Cython . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 280 14.6 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 283 ii 14.7 Further Reading and References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 283 14.8 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 284 III Packages and applications 286 15 Sympy : Symbolic Mathematics in Python 288 15.1 First Steps with SymPy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 289 15.2 Algebraic manipulations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 290 15.3 Calculus . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 290 15.4 Equation solving . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 292 15.5 Linear Algebra . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 293 16 Scikit-image: image processing 295 16.1 Introduction and concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 295 16.2 Input/output, data types and colorspaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 297 16.3 Image preprocessing / enhancement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 299 16.4 Image segmentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 302 16.5 Measuring regions’ properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 305 16.6 Data visualization and interaction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 305 16.7 Feature extraction for computer vision . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 307 17 Traits: building interactive dialogs 309 17.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 310 17.2 Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 310 17.3 What are Traits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 311 17.4 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 326 18 3D plotting with Mayavi 328 18.1 Mlab: the scripting interface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 328 18.2 Interactive work . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 334 18.3 Slicing and dicing data: sources, modules and filters . . . . . . . . . . . . . . . . . . . . . . . . 335 18.4 Animating the data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 337 18.5 Making interactive dialogs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 338 18.6 Putting it together . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 340 19 scikit-learn: machine learning in Python 341 19.1 Loading an example dataset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 342 19.2 Classification . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 343 19.3 Clustering: grouping observations together . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 346 19.4 Dimension Reduction with Principal Component Analysis . . . . . . . . . . . . . . . . . . . . . 347 19.5 Putting it all together: face recognition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 348 19.6 Linear model: from regression to sparsity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 350 19.7 Model selection: choosing estimators and their parameters . . . . . . . . . . . . . . . . . . . . . 351 Index 352 iii Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Contents 1 Part I Getting started with Python for science 2 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) This part of the Scipy lecture notes is a self-contained introduction to everything that is needed to use Python for science, from the language itself, to numerical computing or plotting. 3 CHAPTER 1 Scientific computing with tools and workflow authors Fernando Perez, Emmanuelle Gouillart, Gaël Varoquaux, Valentin Haenel 1.1 Why Python? 1.1.1 The scientist’s needs • Get data (simulation, experiment control) • Manipulate and process data. • Visualize results to understand what we are doing! • Communicate results: produce figures for reports or publications, write presentations. 1.1.2 Specifications • Rich collection of already existing bricks corresponding to classical numerical methods or basic actions: we don’t want to re-program the plotting of a curve, a Fourier transform or a fitting algorithm. Don’t reinvent the wheel! • Easy to learn: computer science is neither our job nor our education. We want to be able to draw a curve, smooth a signal, do a Fourier transform in a few minutes. • Easy communication with collaborators, students, customers, to make the code live within a lab or a com- pany: the code should be as readable as a book. Thus, the language should contain as few syntax symbols or unneeded routines as possible that would divert the reader from the mathematical or scientific understanding of the code. • Efficient code that executes quickly but needless to say that a very fast code becomes useless if we spend too much time writing it. So, we need both a quick development time and a quick execution time. • A single environment/language for everything, if possible, to avoid learning a new software for each new problem. 1.1.3 Existing solutions Which solutions do scientists use to work? Compiled languages: C, C++, Fortran, etc. • Advantages: – Very fast. Very optimized compilers. For heavy computations, it’s difficult to outperform these lan- guages. 4 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) – Some very optimized scientific libraries have been written for these languages. Example: BLAS (vector/matrix operations) • Drawbacks: – Painful usage: no interactivity during development, mandatory compilation steps, verbose syntax (&, ::, }}, ; etc.), manual memory management (tricky in C). These are difficult languages for non com- puter scientists. Scripting languages: Matlab • Advantages: – Very rich collection of libraries with numerous algorithms, for many different domains. Fast execution because these libraries are often written in a compiled language. – Pleasant development environment: comprehensive and well organized help, integrated editor, etc. – Commercial support is available. • Drawbacks: – Base language is quite poor and can become restrictive for advanced users. – Not free. Other scripting languages: Scilab, Octave, Igor, R, IDL, etc. • Advantages: – Open-source, free, or at least cheaper than Matlab. – Some features can be very advanced (statistics in R, figures in Igor, etc.) • Drawbacks: – Fewer available algorithms than in Matlab, and the language is not more advanced. – Some software are dedicated to one domain. Ex: Gnuplot or xmgrace to draw curves. These programs are very powerful, but they are restricted to a single type of usage, such as plotting. What about Python? • Advantages: – Very rich scientific computing libraries (a bit less than Matlab, though) – Well thought out language, allowing to write very readable and well structured code: we “code what we think”. – Many libraries for other tasks than scientific computing (web server management, serial port access, etc.) – Free and open-source software, widely spread, with a vibrant community. • Drawbacks: – less pleasant development environment than, for example, Matlab. (More geek-oriented). – Not all the algorithms that can be found in more specialized software or toolboxes. 1.2 Scientific Python building blocks Unlike Matlab, Scilab or R, Python does not come with a pre-bundled set of modules for scientific computing. Below are the basic building blocks that can be combined to obtain a scientific computing environment: • Python, a generic and modern computing language – Python language: data types (string, int), flow control, data collections (lists, dictionaries), pat- terns, etc. 1.2. Scientific Python building blocks 5 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) – Modules of the standard library. – A large number of specialized modules or applications written in Python: web protocols, web frame- work, etc. and scientific computing. – Development tools (automatic testing, documentation generation) • IPython, an advanced Python shell http://ipython.scipy.org/moin/ • Numpy : provides powerful numerical arrays objects, and routines to manipulate them. http://www.numpy.org/ • Scipy : high-level data processing routines. Optimization, regression, interpolation, etc http://www.scipy.org/ • Matplotlib : 2-D visualization, “publication-ready” plots http://matplotlib.sourceforge.net/ • Mayavi : 3-D visualization http://code.enthought.com/projects/mayavi/ 1.3 The interactive workflow: IPython and a text editor Interactive work to test and understand algorithms: In this section, we describe an interactive workflow with IPython that is handy to explore and understand algorithms. Python is a general-purpose language. As such, there is not one blessed environment to work in, and not only one way of using it. Although this makes it harder for beginners to find their way, it makes it possible for Python to be 1.3. The interactive workflow: IPython and a text editor 6 [...]... interactive workflow: IPython and a text editor 7 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) 1.3.3 IPython Tips and Tricks The IPython user manual contains a wealth of information about using IPython, but to get you started we want to give you a quick introduction to three useful features: history, magic functions, aliases and tab completion Like a UNIX shell, IPython supports command... instance at 0x2ad8ef0>, ’filename’: ’’} 1.3 The interactive workflow: IPython and a text editor 8 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) IPython help • The built-in IPython cheat-sheet is accessible via the %quickref magic function • A list of all available magic functions is shown when typing %magic Furthermore IPython ships with various aliases... illustrated just below For example, Python is an object-oriented language, with dynamic typing (the same variable can contain objects of different types during the course of a program) See http://www .python. org/about/ for more information about distinguishing features of Python 2.1 First steps Start the Ipython shell (an enhanced interactive Python shell): 10 Python Scientific lecture notes, Release 2013.2 beta... with run condition.py in Ipython 2.3.2 for/range Iterating with an index: 2.3 Control Flow 19 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) >>> for i in range(4): print(i) 0 1 2 3 But most often, it is more readable to iterate over values: >>> for word in (’cool’, ’powerful’, ’readable’): print( Python is %s’ % word) Python is cool Python is powerful Python is readable 2.3.3... (euroscipy 2013) • by typing “ipython” from a Linux/Mac terminal, or from the Windows cmd shell, • or by starting the program from a menu, e.g in the Python( x,y) or EPD menu if you have installed one of these scientific -Python suites Tip: If you don’t have Ipython installed on your computer, other Python shells are available, such as the plain Python shell started by typing python in a terminal, or the.. .Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) used to write programs, in web servers, or embedded devices Reference document for this section: IPython user manual: http://ipython.org/ipython-doc/dev/index.html 1.3.1 Command line interaction Start ipython: In [1]: print(’Hello world’) Hello world Getting help by... (e.g., /usr/lib /python) as well as the list of directories specified by the environment variable PYTHONPATH The list of directories searched by Python is given by the sys.path variable In [1]: import sys In [2]: sys.path Out[2]: [’’, ’/home/varoquau/.local/bin’, ’/usr/lib /python2 .7’, ’/home/varoquau/.local/lib /python2 .7/site-packages’, ’/usr/lib /python2 .7/dist-packages’, ’/usr/local/lib /python2 .7/dist-packages’,... computing tools we are going to use are modules: 2.5 Reusing code: scripts and modules 29 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) >>> import numpy as np # data arrays >>> np.linspace(0, 10, 6) array([ 0., 2., 4., 6., 8., 10.]) >>> import scipy # scientific computing In Python( x,y), Ipython(x,y) executes the following imports at startup: >>> >>> >>> >>> import numpy import... are also available, such as http://diveintopython.org/ Tip: Python is a programming language, as are C, Fortran, BASIC, PHP, etc Some specific features of Python are as follows: • an interpreted (as opposed to compiled) language Contrary to e.g C or Fortran, one does not compile Python code before executing it In addition, Python can be used interactively: many Python interpreters are available, from which... the plain Python interpreter, etc.) It is also possible In order to execute this script as a standalone program, by executing the script inside a shell terminal (Linux/Mac console or cmd Windows console) For example, if we are in the same directory as the test.py file, we can execute this in a console: $ python test.py Hello how 2.5 Reusing code: scripts and modules 28 Python Scientific lecture notes, Release . 351 Index 352 iii Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) Contents 1 Part I Getting started with Python for science 2 Python Scientific lecture notes, Release 2013.2. features of Python. 2.1 First steps Start the Ipython shell (an enhanced interactive Python shell): 10 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) • by typing “ipython” from. blocks. 1.3. The interactive workflow: IPython and a text editor 7 Python Scientific lecture notes, Release 2013.2 beta (euroscipy 2013) 1.3.3 IPython Tips and Tricks The IPython user manual contains a

Ngày đăng: 22/10/2014, 21:07

TỪ KHÓA LIÊN QUAN

TÀI LIỆU CÙNG NGƯỜI DÙNG

  • Đang cập nhật ...

TÀI LIỆU LIÊN QUAN