Cargando…

GNU Octave : beginner's guide : become a proficient Octave user by learning this high-level scientific numerical tool from the ground up /

Become a proficient Octave user by learning this high-level scientific numerical tool from the ground up.

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Schmidt Hansen, Jesper
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Pub., 2011.
Colección:Learn by doing : less theory, more results.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_ocn758980100
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 111028s2011 enka o 001 0 eng d
040 |a N$T  |b eng  |e pn  |c N$T  |d N$T  |d E7B  |d UMI  |d COO  |d OCLCQ  |d DEBSZ  |d OCLCQ  |d NLGGC  |d OCLCO  |d YDXCP  |d OCLCQ  |d OCLCO  |d OCLCF  |d OCLCO  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO  |d JBG  |d AGLDB  |d ICA  |d CNNOR  |d MOR  |d PIFAG  |d OCLCQ  |d U3W  |d D6H  |d STF  |d WRM  |d VTS  |d CEF  |d NRAMU  |d NLE  |d INT  |d VT2  |d AU@  |d UKMGB  |d OCLCQ  |d A6Q  |d UKAHL  |d HS0  |d AJS  |d OCLCQ  |d OCLCO  |d OCLCQ 
016 7 |a 018011969  |2 Uk 
019 |a 747411348  |a 793911537  |a 961511360  |a 962577510  |a 988475878  |a 991948301  |a 1037705755  |a 1038622944  |a 1038674412  |a 1045446862  |a 1055320006  |a 1058261646  |a 1081291176  |a 1083619532  |a 1103250437  |a 1129343098 
020 |a 9781849513333  |q (electronic bk.) 
020 |a 1849513333  |q (electronic bk.) 
020 |z 9781849513326 
020 |z 1849513325 
029 1 |a AU@  |b 000050962674 
029 1 |a AU@  |b 000053016658 
029 1 |a AU@  |b 000058967420 
029 1 |a AU@  |b 000067100864 
029 1 |a CHNEW  |b 000608735 
029 1 |a DEBBG  |b BV040902272 
029 1 |a DEBSZ  |b 372703267 
029 1 |a DEBSZ  |b 378297562 
029 1 |a DEBSZ  |b 38138344X 
029 1 |a GBVCP  |b 785360999 
029 1 |a UKMGB  |b 018011969 
035 |a (OCoLC)758980100  |z (OCoLC)747411348  |z (OCoLC)793911537  |z (OCoLC)961511360  |z (OCoLC)962577510  |z (OCoLC)988475878  |z (OCoLC)991948301  |z (OCoLC)1037705755  |z (OCoLC)1038622944  |z (OCoLC)1038674412  |z (OCoLC)1045446862  |z (OCoLC)1055320006  |z (OCoLC)1058261646  |z (OCoLC)1081291176  |z (OCoLC)1083619532  |z (OCoLC)1103250437  |z (OCoLC)1129343098 
037 |a CL0500000138  |b Safari Books Online 
050 4 |a QA76.73.G58  |b S36 2011eb 
072 7 |a COM  |x 051310  |2 bisacsh 
072 7 |a COM  |x 051280  |2 bisacsh 
072 7 |a COM  |x 051130  |2 bisacsh 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Schmidt Hansen, Jesper. 
245 1 0 |a GNU Octave :  |b beginner's guide : become a proficient Octave user by learning this high-level scientific numerical tool from the ground up /  |c Jesper Schmidt Hansen. 
260 |a Birmingham, UK :  |b Packt Pub.,  |c 2011. 
300 |a 1 online resource (1 electronic resource (vii, 258 pages)) :  |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 Learn by doing : less theory, more results 
588 0 |a Print version record. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1:Introducing GNU Octave; So what is GNU Octave?; Applications; Limitations of Octave; Octave and MATLAB; The Octave community; Installing Octave; Windows; GNU/Linux; Building Octave from the source under GNU/Linux; Time for action -- building Octave from source; Checking your installation with peaks; Time for action -- testing with peaks; Customizing Octave; Time for action -- creating an Octave home directory under Windows.; Creating your first .octaverc file 
505 8 |a Time for action -- editing the .octaverc fileMore on .octaverc; Installing additional packages; Time for action -- installing additional packages; Uninstalling a package; Getting help; The behaviour of the Octave command prompt; Summary; Chapter 2:Interacting with Octave: Variables and Operators; Simple numerical variables; Accessing and changing array elements; More examples; Time for action -- manipulating arrays; Complex variables; Text variables; Higher-dimensional arrays; Structures and cell arrays; Structures; Time for action -- instantiating a structure; Accessing structure fields 
505 8 |a Cell arraysTime for action -- instantiating a cell array; Getting information; Time for action -- using whos; Size, rows, columns, and length; Identifying the variable type; Deleting variables from the workspace; A few things that make life easier; Basic arithmetic; Addition and subtraction; Time for action -- doing addition and subtraction operations; Matrix multiplication; Time for action -- doing multiplication operations; Element-by-element, power, and transpose operations; Operators for structures and cell arrays; Solving linear equation systems: left and right division 
505 8 |a Time for action -- doing left and right divisionBasic arithmetic for complex variables; Summary of arithmetic operators; Comparison operators and precedence rules; Precedence rules; Time for action -- working with precedence rules; A few hints; Summary; Chapter 3:Working with Octave: Functions and Plotting; Octave functions; Mathematical functions; Time for action -- using the cos function; Polynomials in Octave; More complicated mathematical functions; Time for action -- putting together mathematical functions; Helper functions; Generating random numbers; min and max; Sorting arrays 
505 8 |a Find, any, and allfloor, ceil, round, and fix; Time for action -- trying out floor, ceil, round, and fix; sum and prod; Absolute values; Complex input arguments; Operator functions; Linear algebra; Time for action -- using Octave for advanced linear algebra; Polynomials; Two-dimensional plotting; Time for action -- making your first plot; plot and set; Time for action -- changing the figure properties; Adding lines and text to your plot; Plot styles and colors; Title and legends; Ticks; Grids; fplot; Clear the figure window; Moving on; Time for action -- having multiple graphs in the same figure 
520 |a Become a proficient Octave user by learning this high-level scientific numerical tool from the ground up. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Numerical analysis  |x Data processing. 
650 0 |a Programming languages (Electronic computers) 
650 6 |a Analyse numérique  |x Informatique. 
650 7 |a COMPUTERS  |x Programming Languages  |x C♯  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Pascal.  |2 bisacsh 
650 7 |a Numerical analysis  |x Data processing.  |2 fast  |0 (OCoLC)fst01041279 
650 7 |a Programming languages (Electronic computers)  |2 fast  |0 (OCoLC)fst01078704 
776 0 8 |i Print version:  |a Schmidt Hansen, Jesper.  |t GNU Octave.  |d Birmingham, UK : Packt Pub., 2011  |z 9781849513326  |w (OCoLC)782070800 
830 0 |a Learn by doing : less theory, more results. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781849513326/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26943705 
938 |a ebrary  |b EBRY  |n ebr10482260 
938 |a EBSCOhost  |b EBSC  |n 375321 
938 |a YBP Library Services  |b YANK  |n 6978696 
994 |a 92  |b IZTAP