Cargando…

NumPy cookbook : over 90 fascinating recipes to learn and perform /

If you are a Python developer with some experience of working on scientific, mathematical, and statistical applications and want to gain an expert understanding of NumPy programming in relation to science, math, and finance using practical recipes, then this book is for you.

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Idris, Ivan (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2015.
Edición:Second edition.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBSCO_ocn910639617
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 150603s2015 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCO  |d DEBBG  |d EBLCP  |d IDEBK  |d DEBSZ  |d YDXCP  |d COO  |d OCLCO  |d N$T  |d OCLCO  |d OCLCF  |d OCLCO  |d IDB  |d TEFOD  |d OCLCQ  |d ZCU  |d AGLDB  |d OCLCQ  |d MERUC  |d OCLCQ  |d D6H  |d VTS  |d ICG  |d OCLCQ  |d STF  |d DKC  |d OCLCQ  |d AJS  |d INARC  |d OCLCO  |d OCLCQ  |d OCLCO 
019 |a 908632786  |a 908671197  |a 909972257 
020 |a 9781784399825  |q (electronic bk.) 
020 |a 1784399825  |q (electronic bk.) 
020 |z 9781784390945 
020 |z 1784390941 
029 1 |a AU@  |b 000054939667 
029 1 |a DEBBG  |b BV042683636 
029 1 |a DEBBG  |b BV043620339 
029 1 |a DEBSZ  |b 433561521 
029 1 |a DEBSZ  |b 446588423 
029 1 |a DEBSZ  |b 493164987 
029 1 |a DKDLA  |b 820120-katalog:999942675305765 
029 1 |a GBVCP  |b 824793447 
029 1 |a GBVCP  |b 835876098 
035 |a (OCoLC)910639617  |z (OCoLC)908632786  |z (OCoLC)908671197  |z (OCoLC)909972257 
037 |a 2489C1A5-3EF6-4063-8745-14E705C6B7EA  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA297 
072 7 |a COM  |x 013000  |2 bisacsh 
072 7 |a COM  |x 014000  |2 bisacsh 
072 7 |a COM  |x 018000  |2 bisacsh 
072 7 |a COM  |x 067000  |2 bisacsh 
072 7 |a COM  |x 032000  |2 bisacsh 
072 7 |a COM  |x 037000  |2 bisacsh 
072 7 |a COM  |x 052000  |2 bisacsh 
082 0 4 |a 004.10923478  |2 22 
049 |a UAMI 
100 1 |a Idris, Ivan,  |e author. 
245 1 0 |a NumPy cookbook :  |b over 90 fascinating recipes to learn and perform /  |c Ivan Idris. 
246 3 0 |a Over 90 fascinating recipes to learn and perform 
250 |a Second edition. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community Experience Distilled 
588 0 |a Online resource; title from cover (Safari, viewed May 26, 2015). 
500 |a Includes index. 
500 |a "Quick answers to common problems." 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Winding Along with IPython; Introduction; Installing IPython; Using IPython as a shell; Reading manual pages; Installing matplotlib; Running an IPython notebook; Exporting an IPython notebook; Importing a web notebook; Configuring a notebook server; Exploring the SymPy profile; Chapter 2: Advanced Indexing and Array Concepts; Introduction; Installing SciPy; Installing PIL; Resizing images; Creating views and copies; Flipping Lena; Fancy indexing. 
505 8 |a Indexing with a list of locationsIndexing with Booleans; Stride tricks for Sudoku; Broadcasting arrays; Chapter 3: Getting to Grips with Commonly Used Functions; Introduction; Summing Fibonacci numbers; Finding prime factors; Finding palindromic numbers; The steady state vector; Discovering a power law; Trading periodically on dips; Simulating trading at random; Sieving integers with the Sieve of Eratosthenes; Chapter 4: Connecting NumPy with the Rest of the World; Introduction; Using the buffer protocol; Using the array interface; Exchanging data with MATLAB and Octave; Installing RPy2. 
505 8 |a Interfacing with RInstalling JPype; Sending a NumPy array to JPype; Installing Google App Engine; Deploying the NumPy code on the Google Cloud; Running the NumPy code in a PythonAnywhere web console; Chapter 5: Audio and Image Processing; Introduction; Loading images into memory maps; Combining images; Blurring images; Repeating audio fragments; Generating sounds; Designing an audio filter; Edge detection with the Sobel filter; Chapter 6: Special Arrays and Universal Functions; Introduction; Creating a universal function; Finding Pythagorean triples. 
505 8 |a Performing string operations with chararrayCreating a masked array; Ignoring negative and extreme values; Creating a scores table with a recarray function; Chapter 7: Profiling and Debugging; Introduction; Profiling with timeit; Profiling with IPython; Installing line_profiler; Profiling code with line_profiler; Profiling code with the cProfile extension; Debugging with IPython; Debugging with PuDB; Chapter 8: Quality Assurance; Introduction; Installing Pyflakes; Performing static analysis with Pyflakes; Analyzing code with Pylint; Performing static analysis with Pychecker. 
505 8 |a Testing code with docstringsWriting unit tests; Testing code with mocks; Testing the BDD way; Chapter 9: Speeding Up Code with Cython; Introduction; Installing Cython; Building a Hello World program; Using Cython with NumPy; Calling C functions; Profiling the Cython code; Approximating factorials with Cython; Chapter 10: Fun with Scikits; Introduction; Installing scikit-learn; Loading an example dataset; Clustering Dow Jones stocks with scikits-learn; Installing statsmodels; Performing a normality test with statsmodels; Installing scikit-image; Detecting corners; Detecting edges. 
520 |a If you are a Python developer with some experience of working on scientific, mathematical, and statistical applications and want to gain an expert understanding of NumPy programming in relation to science, math, and finance using practical recipes, then this book is for you. 
588 0 |a Print version record. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Numerical analysis  |x Data processing. 
650 0 |a Python (Computer program language) 
650 6 |a Analyse numérique  |x Informatique. 
650 6 |a Python (Langage de programmation) 
650 7 |a COMPUTERS  |x Computer Literacy.  |2 bisacsh 
650 7 |a COMPUTERS  |x Computer Science.  |2 bisacsh 
650 7 |a COMPUTERS  |x Data Processing.  |2 bisacsh 
650 7 |a COMPUTERS  |x Hardware  |x General.  |2 bisacsh 
650 7 |a COMPUTERS  |x Information Technology.  |2 bisacsh 
650 7 |a COMPUTERS  |x Machine Theory.  |2 bisacsh 
650 7 |a COMPUTERS  |x Reference.  |2 bisacsh 
650 7 |a Numerical analysis  |x Data processing  |2 fast 
650 7 |a Python (Computer program language)  |2 fast 
776 0 8 |i Print version:  |a Idris, Ivan.  |t NumPy cookbook.  |b Second edition  |z 9781784399825 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=986717  |z Texto completo 
938 |a EBSCOhost  |b EBSC  |n 986717 
938 |a Internet Archive  |b INAR  |n numpycookbookove0000idri 
938 |a YBP Library Services  |b YANK  |n 12407223 
994 |a 92  |b IZTAP