Essential Maple: an introduction for scientific programmers
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
New York [u.a.]
Springer
1995
|
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Beschreibung: | Literaturverz. S. 207 - 209 |
Beschreibung: | XV, 218 S. graph. Darst. |
ISBN: | 3540942092 0387942092 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV009900598 | ||
003 | DE-604 | ||
005 | 19991125 | ||
007 | t | ||
008 | 941107s1995 gw d||| |||| 00||| eng d | ||
016 | 7 | |a 941992667 |2 DE-101 | |
020 | |a 3540942092 |9 3-540-94209-2 | ||
020 | |a 0387942092 |9 0-387-94209-2 | ||
035 | |a (OCoLC)31131705 | ||
035 | |a (DE-599)BVBBV009900598 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a eng | |
044 | |a gw |c DE | ||
049 | |a DE-29T |a DE-739 |a DE-91 |a DE-384 |a DE-824 |a DE-20 |a DE-92 |a DE-355 |a DE-522 |a DE-634 |a DE-83 |a DE-11 |a DE-188 | ||
050 | 0 | |a QA76.95 | |
082 | 0 | |a 510/.285/53 |2 20 | |
084 | |a ST 601 |0 (DE-625)143682: |2 rvk | ||
084 | |a DAT 306f |2 stub | ||
100 | 1 | |a Corless, Robert M. |e Verfasser |4 aut | |
245 | 1 | 0 | |a Essential Maple |b an introduction for scientific programmers |c Robert M. Corless |
264 | 1 | |a New York [u.a.] |b Springer |c 1995 | |
300 | |a XV, 218 S. |b graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
500 | |a Literaturverz. S. 207 - 209 | ||
630 | 0 | 4 | |a Maple (Computer file) |
650 | 7 | |a Maple (computerprogramma) |2 gtt | |
650 | 4 | |a Mathématiques - Informatique | |
650 | 4 | |a Datenverarbeitung | |
650 | 4 | |a Mathematik | |
650 | 4 | |a Mathematics |x Data processing | |
650 | 0 | 7 | |a Maple V 4.0 |0 (DE-588)4407788-9 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Maple V 4.0 |0 (DE-588)4407788-9 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | 2 | |m GBV Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=006557095&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-006557095 |
Datensatz im Suchindex
_version_ | 1804124262147031040 |
---|---|
adam_text | ROBERT M. CORLESS ESSENTIAL MAPLE AN INTRODUCTION FOR SCIENTIFIC
PROGRAMMERS WITH 32 FIGURES SPRINGER-VERLAG NEW YORK BERLIN HEIDELBERG
LONDON PARIS TOKYO HONG KONG BARCELONA BUDAPEST CONTENTS PREFACE VII
LIST OF FIGURES XV 1 BASICS 1 1.1 GETTING STARTED 1 1.1.1 BASIC COMMAND
SYNTAX 2 1.1.2 SAMPLE MAPLE SESSIONS 3 1.1.3 ARITHMETIC 16 1.1.4 COMMON
SYNTAX ERRORS 19 1.1.5 INTERRUPTING A MAPLE COMPUTATION 20 1.2 SAVING
WORK 21 1.3 USE OF FILES 22 1.3.1 WORKSHEETS 23 1.3.2 WRITING TO A FILE
23 1.4 SOME THINGS TO WATCH OUT FOR 24 1.4.1 ASSIGNING VALUES TO
VARIABLES 24 1.4.2 REMOVING VALUES FROM VARIABLES 25 1.4.3 LEFT QUOTE
VS. RIGHT QUOTE VS. DITTO 27 1.4.4 PRECEDENCE OF OPERATORS 29 1.4.5
PROTECTED AND RESERVED NAMES 30 1.5 DOCUMENTING YOUR WORK 30 1.6 THE
THREE LEVELS OF MAPLE BLACK BOXES 33 1.7 NO NON-TRIVIAL SOFTWARE
PACKAGE IS BUG-FREE 34 1.8 EVALUATION RULES 35 1.8.1 INERT FUNCTIONS 41
1.9 THE ASSUME FACILITY 45 2 USEFUL ONE-WORD COMMANDS 49 2.1
SIMPLIFICATION 49 XII * CONTENTS 2.1.1 NORMAL 49 2.1.2 COLLECT 52 2.1.3
FACTOR 55 2.1.4 EXPAND 57 2.1.5 COMBINE 58 2.1.6 SIMPLIFY 58 2.2 SOLVING
EQUATIONS 62 2.2.1 SYSTEMS OF POLYNOMIAL EQUATIONS 64 2.3 MANIPULATIONS
FROM CALCULUS 67 2.3.1 CONTINUITY OF ANTIDERIVATIVES 74 2.4 ADDING TERMS
VS. THE FINITE-DIFFERENCE CALCULUS 80 2.5 FLOATING-POINT EVALUATION 84
2.6 THE MOST HELPFUL MAPLE UTILITIES 89 2.7 PLOTTING IN MAPLE 94 2.7.1
TWO-DIMENSIONAL PLOTS 95 2.7.2 A HIGHLY DISCONTINUOUS FUNCTION 100 2.7.3
POLAR COORDINATE PLOTS 104 2.7.4 THREE-DIMENSIONAL PLOTS 107 2.7.5
CONTOUR PLOTS AND OTHER PLOTS 110 2.7.6 COMMON ERRORS 116 2.7.7 GETTING
HARDCOPY OF YOUR PLOTS 117 3 PROGRAMMING IN MAPLE 121 3.1 OPERATORS 122
3.1.1 FINITE-DIFFERENCE OPERATOR EXAMPLES 126 3.1.2 REMARKS ON
MATHEMATICAL OPERATORS 128 3.2 MORE GENERAL PROCEDURES 129 3.2.1
STRUCTURED TYPES 131 3.3 DATA STRUCTURES 133 3.4 LOCAL VS. GLOBAL VS.
ENVIRONMENT VARIABLES 139 3.4.1 EXPORTING LOCAL VARIABLES 139 3.4.2
GLOBAL VARIABLES 141 3.4.3 ENVIRONMENT VARIABLES 141 3.5 RECURSION AND
OPTION REMEMBER 144 3.6 VARIABLE NUMBER OR TYPE OF ARGUMENTS 147 3.7
CREATING YOUR OWN HELP FILE 149 3.8 RETURNING MORE THAN ONE RESULT 152
3.9 DEBUGGING MAPLE PROGRAMS 154 3.10 SAMPLE MAPLE PROGRAMS 158 3.10.1
PARAMETRIC SOLUTION OF ALGEBRAIC EQUATIONS 158 3.10.2 READING A
PROCEDURE INTO MAPLE 161 3.10.3 INDEXING FUNCTION FOR BANDED MATRICES
162 3.10.4 SOLUTION OF Y {T) = AY(T - 1) 167 CONTENTS * XIII KEYWORD
SUMMARY 171 4.1 LINEAR ALGEBRA 172 4.1.1 ESSENTIALS 172 4.1.2 SOLUTION
OF LINEAR SYSTEMS 172 4.1.3 EIGENPROBLEMS 173 4.1.4 ORTHOGONALIZATION
173 4.1.5 SPECIAL MATRICES 174 4.1.6 THEORY 174 4.1.7 UTILITIES 175
4.1.8 VECTOR OPERATIONS 176 4.1.9 LINEAR PROGRAMMING 176 4.1.10
APPROPRIATE CONVERSIONS 177 4.1.11 RELEVANT STRUCTURED DATA TYPES 177
4.2 POLYNOMIALS AND RATIONAL FUNCTIONS 178 4.2.1 POLYNOMIAL
MANIPULATIONS 178 4.2.2 MATHEMATICAL OPERATIONS 179 4.2.3 ROOTFINDING
180 4.2.4 SYMBOLIC MANIPULATION OF ROOTS 180 4.2.5 ORTHOGONAL
POLYNOMIALS 181 4.2.6 RATIONAL FUNCTIONS 181 4.2.7 INTERPOLATION AND
APPROXIMATION 181 4.2.8 UTILITIES 182 4.2.9 APPROPRIATE CONVERSIONS 183
4.2.10 RELEVANT STRUCTURED DATA TYPES 183 4.3 CALCULUS 184 4.3.1
UNIVARIATE CALCULUS 184 4.3.2 MULTIVARIATE CALCULUS 185 4.3.3 COMPLEX
VARIABLES 186 4.3.4 ELEMENTARY AND SPECIAL FUNCTIONS AND CONSTANTS ..
187 4.3.5 FUNCTIONS WITH JUMP DISCONTINUITIES 190 4.3.6 APPROPRIATE
CONVERSIONS 191 4.3.7 APPROPRIATE SIMPLIFICATIONS 192 4.3.8 RELEVANT
STRUCTURED DATA TYPES 192 4.4 ABSTRACT ALGEBRA 193 4.4.1 GROUPS 193
4.4.2 RINGS 193 4.4.3 FIELDS 194 4.4.4 GENERAL DOMAINS 194 4.5
COMBINATORICS, NUMBER THEORY, AND GRAPH THEORY 194 4.5.1 APPROPRIATE
CONVERSIONS 195 4.5.2 RELEVANT STRUCTURED DATA TYPES 195 4.6 GEOMETRY
197 XIV * CONTENTS 4.7 PLOTTING 197 4.7.1 RELEVANT STRUCTURED DATA TYPES
197 4.8 STATISTICS 198 4.9 SHARE LIBRARY 198 4.10 PROGRAMMING 199 4.10.1
CONTROL STRUCTURES 199 4.10.2 OBJECT MANIPULATION 199 4.10.3 PROCEDURES
200 4.10.4 DEBUGGING TOOLS 201 4.10.5 PROGRAM GENERATION TOOLS 201
4.10.6 HACKER S CORNER 202 4.10.7 APPROPRIATE CONVERSIONS 202 4.10.8
RELEVANT STRUCTURED DATA TYPES 203 4.11 FILE I/O 203 4.12 CONNECTIONS TO
OTHER PROGRAMS AND LANGUAGES 204 4.12.1 CONVERSION TO FORTRAN AND C 204
4.12.2 TYPESETTING LANGUAGE OUTPUT 204 4.12.3 CALLING OTHER PROGRAMS
FROM MAPLE 205 4.12.4 CALLING MAPLE FROM OTHER PROGRAMS 205 REFERENCES
207 INDEX 211
|
any_adam_object | 1 |
author | Corless, Robert M. |
author_facet | Corless, Robert M. |
author_role | aut |
author_sort | Corless, Robert M. |
author_variant | r m c rm rmc |
building | Verbundindex |
bvnumber | BV009900598 |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.95 |
callnumber-search | QA76.95 |
callnumber-sort | QA 276.95 |
callnumber-subject | QA - Mathematics |
classification_rvk | ST 601 |
classification_tum | DAT 306f |
ctrlnum | (OCoLC)31131705 (DE-599)BVBBV009900598 |
dewey-full | 510/.285/53 |
dewey-hundreds | 500 - Natural sciences and mathematics |
dewey-ones | 510 - Mathematics |
dewey-raw | 510/.285/53 |
dewey-search | 510/.285/53 |
dewey-sort | 3510 3285 253 |
dewey-tens | 510 - Mathematics |
discipline | Informatik Mathematik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01720nam a2200469 c 4500</leader><controlfield tag="001">BV009900598</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">19991125 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">941107s1995 gw d||| |||| 00||| eng d</controlfield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">941992667</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">3540942092</subfield><subfield code="9">3-540-94209-2</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0387942092</subfield><subfield code="9">0-387-94209-2</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)31131705</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV009900598</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">gw</subfield><subfield code="c">DE</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-29T</subfield><subfield code="a">DE-739</subfield><subfield code="a">DE-91</subfield><subfield code="a">DE-384</subfield><subfield code="a">DE-824</subfield><subfield code="a">DE-20</subfield><subfield code="a">DE-92</subfield><subfield code="a">DE-355</subfield><subfield code="a">DE-522</subfield><subfield code="a">DE-634</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-11</subfield><subfield code="a">DE-188</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">QA76.95</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">510/.285/53</subfield><subfield code="2">20</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 601</subfield><subfield code="0">(DE-625)143682:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 306f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Corless, Robert M.</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Essential Maple</subfield><subfield code="b">an introduction for scientific programmers</subfield><subfield code="c">Robert M. Corless</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">New York [u.a.]</subfield><subfield code="b">Springer</subfield><subfield code="c">1995</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XV, 218 S.</subfield><subfield code="b">graph. Darst.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Literaturverz. S. 207 - 209</subfield></datafield><datafield tag="630" ind1="0" ind2="4"><subfield code="a">Maple (Computer file)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Maple (computerprogramma)</subfield><subfield code="2">gtt</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Mathématiques - Informatique</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Datenverarbeitung</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Mathematik</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Mathematics</subfield><subfield code="x">Data processing</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Maple V 4.0</subfield><subfield code="0">(DE-588)4407788-9</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Maple V 4.0</subfield><subfield code="0">(DE-588)4407788-9</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">GBV Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=006557095&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-006557095</subfield></datafield></record></collection> |
id | DE-604.BV009900598 |
illustrated | Illustrated |
indexdate | 2024-07-09T17:42:52Z |
institution | BVB |
isbn | 3540942092 0387942092 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-006557095 |
oclc_num | 31131705 |
open_access_boolean | |
owner | DE-29T DE-739 DE-91 DE-BY-TUM DE-384 DE-824 DE-20 DE-92 DE-355 DE-BY-UBR DE-522 DE-634 DE-83 DE-11 DE-188 |
owner_facet | DE-29T DE-739 DE-91 DE-BY-TUM DE-384 DE-824 DE-20 DE-92 DE-355 DE-BY-UBR DE-522 DE-634 DE-83 DE-11 DE-188 |
physical | XV, 218 S. graph. Darst. |
publishDate | 1995 |
publishDateSearch | 1995 |
publishDateSort | 1995 |
publisher | Springer |
record_format | marc |
spelling | Corless, Robert M. Verfasser aut Essential Maple an introduction for scientific programmers Robert M. Corless New York [u.a.] Springer 1995 XV, 218 S. graph. Darst. txt rdacontent n rdamedia nc rdacarrier Literaturverz. S. 207 - 209 Maple (Computer file) Maple (computerprogramma) gtt Mathématiques - Informatique Datenverarbeitung Mathematik Mathematics Data processing Maple V 4.0 (DE-588)4407788-9 gnd rswk-swf Maple V 4.0 (DE-588)4407788-9 s DE-604 GBV Datenaustausch application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=006557095&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Corless, Robert M. Essential Maple an introduction for scientific programmers Maple (Computer file) Maple (computerprogramma) gtt Mathématiques - Informatique Datenverarbeitung Mathematik Mathematics Data processing Maple V 4.0 (DE-588)4407788-9 gnd |
subject_GND | (DE-588)4407788-9 |
title | Essential Maple an introduction for scientific programmers |
title_auth | Essential Maple an introduction for scientific programmers |
title_exact_search | Essential Maple an introduction for scientific programmers |
title_full | Essential Maple an introduction for scientific programmers Robert M. Corless |
title_fullStr | Essential Maple an introduction for scientific programmers Robert M. Corless |
title_full_unstemmed | Essential Maple an introduction for scientific programmers Robert M. Corless |
title_short | Essential Maple |
title_sort | essential maple an introduction for scientific programmers |
title_sub | an introduction for scientific programmers |
topic | Maple (Computer file) Maple (computerprogramma) gtt Mathématiques - Informatique Datenverarbeitung Mathematik Mathematics Data processing Maple V 4.0 (DE-588)4407788-9 gnd |
topic_facet | Maple (Computer file) Maple (computerprogramma) Mathématiques - Informatique Datenverarbeitung Mathematik Mathematics Data processing Maple V 4.0 |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=006557095&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT corlessrobertm essentialmapleanintroductionforscientificprogrammers |