Top Banner
Использование языка Python для научных исследований Константинов Е.С. Россия, Иваново, ИВГПУ, доцент
21

SciPy

Jul 12, 2015

Download

Education

jskonst
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: SciPy

Использование языка Python для научных исследований

Константинов Е.С. Россия, Иваново, ИВГПУ, доцент

Page 2: SciPy
Page 3: SciPy
Page 4: SciPy
Page 5: SciPy
Page 6: SciPy
Page 7: SciPy

OpenCV

LegoNXTArduino

Page 8: SciPy

OctaveMatLab

Page 9: SciPy

www.scipy.org

Page 10: SciPy

Matlab/Octavex=-10:0.5:10;y=x.^2;plot(x,y)grid on

Page 11: SciPy

Pythonfor x in range(-10,10): y=x**2 print(x,y)

1.

2. for x in range(-10,10,2): y=x**2 print(x,y)

Page 12: SciPy

for x in range(-10,10,0.5): y=x**2 print(x,y)

3.

Page 13: SciPy

for x in range(-10,10,0.5): y=x**2 print(x,y)

3.

Page 14: SciPy

x=-10while x<=10: y=x**2 print(x,y) x+=0.5

Page 15: SciPy

Эммм.... графики?

Page 16: SciPy

import numpyx =numpy.arange(-10,10,0.5)y=x**2

array([ 100. , 90.25, 81. , 72.25, 64. ,.....

Page 17: SciPy

А .... графики?

Page 18: SciPy

MatPlotLib

Page 19: SciPy

import pylabpylab.plot(x,y)pylab.grid()pylab.show()

Page 20: SciPy

import pylabpylab.plot(x,y)pylab.grid()pylab.show()

Page 21: SciPy

Благодарю за внимание