|
|
|
|
LEADER |
00000cam a2200000 a 4500 |
001 |
EBSCO_ocn796796321 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cnu---unuuu |
008 |
120626s2012 enk ob 001 0 eng d |
040 |
|
|
|a N$T
|b eng
|e pn
|c N$T
|d IDEBK
|d EBLCP
|d CDX
|d MERUC
|d UIU
|d COO
|d YDXCP
|d E7B
|d OCLCQ
|d CAMBR
|d DEBSZ
|d DEBBG
|d OCLCQ
|d OCLCF
|d OCLCQ
|d LIV
|d OCLCQ
|d UUM
|d CNCGM
|d OCLCQ
|d WYU
|d TKN
|d AU@
|d UKAHL
|d OCLCQ
|d A6Q
|d OCLCQ
|d BRF
|d LUN
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d OCLCQ
|d S9M
|
019 |
|
|
|a 795895639
|a 817090651
|a 1065706446
|a 1170735615
|a 1171285203
|
020 |
|
|
|a 9781139084796
|q (electronic bk.)
|
020 |
|
|
|a 1139084798
|q (electronic bk.)
|
020 |
|
|
|a 9781139518734
|q (electronic bk.)
|
020 |
|
|
|a 1139518739
|q (electronic bk.)
|
020 |
|
|
|a 1280774088
|
020 |
|
|
|a 9781280774089
|
020 |
|
|
|a 9781139516877
|
020 |
|
|
|a 1139516876
|
020 |
|
|
|a 9781139515221
|
020 |
|
|
|a 1139515225
|
020 |
|
|
|z 9781107017900
|
020 |
|
|
|z 1107017904
|
020 |
|
|
|z 9781107603479
|
020 |
|
|
|z 1107603471
|
024 |
8 |
|
|a 9786613684851
|
029 |
1 |
|
|a AU@
|b 000053284643
|
029 |
1 |
|
|a AU@
|b 000067830613
|
029 |
1 |
|
|a CHNEW
|b 000601395
|
029 |
1 |
|
|a DEBBG
|b BV041056694
|
029 |
1 |
|
|a DEBSZ
|b 379328232
|
029 |
1 |
|
|a DEBSZ
|b 445574720
|
035 |
|
|
|a (OCoLC)796796321
|z (OCoLC)795895639
|z (OCoLC)817090651
|z (OCoLC)1065706446
|z (OCoLC)1170735615
|z (OCoLC)1171285203
|
050 |
|
4 |
|a QA76.73.F25
|b M375 2012eb
|
072 |
|
7 |
|a COM
|x 051070
|2 bisacsh
|
072 |
|
7 |
|a PBW
|2 bicssc
|
082 |
0 |
4 |
|a 005.26/2
|2 23
|
084 |
|
|
|a COM000000
|2 bisacsh
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Markus, Arjen.
|
245 |
1 |
0 |
|a Modern Fortran in practice /
|c Arjen Markus, Michael Metcalf.
|
260 |
|
|
|a Cambridge :
|b Cambridge University Press,
|c 2012.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
520 |
|
|
|a "A tutorial guide that shows programmers how to apply features of Fortran 2008 in a modular, concise, object-oriented, and resource-efficient manner, using multiple processors"--
|c Provided by publisher
|
520 |
|
|
|a "Since the publication of the FORTRAN 77 standard in 1978 the Fortran language has undergone a large number of revisions [61].1 The changes that were introduced reflect both new insights in programming techniques and new developments in computer hardware. From the very start the language has been designed with computing efficiency in mind. The latest standard as of this writing, Fortran 2008, puts even more emphasis on this aspect by introducing explicit support for parallel processing [71]. This first chapter gives an overview of the various standards that have appeared after " FORTRAN 77". There is no attempt to be complete or even to describe all major features - that would mean a whole book or even a series of books. Consult Metcalf et al. [63], [65] or Brainerd et al. [36] for a detailed Officially, Fortran 77 should be written as FORTRAN 77. Since the Fortran 90 standard the name is written in lowercase. description of the standards. 1.1 The flavour of modern Fortran The Fortran 90 standard introduced some very significant changes with respect to the widespread FORTRAN 77 standard: free form source code, array operations, modules and derived types to name but a few. To give an impression of what this means for the programmer, consider this simple problem: We have a file with numbers, one per line (to keep it simple) and we want to determine the distribution of these numbers, that is, produce a simple histogram. In FORTRAN 77 a program that does this might look like: * Produce a simple histogram * PROGRAM HIST INTEGER MAXDATA PARAMETER (MAXDATA = 1000) INTEGER NOBND PARAMETER (NOBND = 9) REAL BOUND(NOBND) REAL DATA(MAXDATA) INTEGER I, NODATA"--
|c Provided by publisher
|
504 |
|
|
|a Includes bibliographical references and index.
|
505 |
0 |
|
|a Cover; Modern Fortran in Practice; Title; Copyright; Dedication; Contents; Foreword; Preface; 1: Introduction to Modern Fortran; 1.1 The Flavor of Modern Fortran; 1.2 Fortran 90; 1.3 Fortran 95; 1.4 Fortran 2003; 1.5 Fortran 2008; 1.6 What Has Not Changed?; 2: Array-Valued Functions; 2.1 Passing Arrays; 2.2 Elemental Functions and Automatic Reallocation; 2.3 Two More Advanced Examples; Spacing of Irrational Numbers; QuickSort; 2.4 Concise Style; 3: Mathematical Abstractions; 3.1 Automatic Differentiation; 3.2 Integer Programming; 3.3 Enumerating Solutions of Diophantine Equations.
|
588 |
0 |
|
|a Print version record.
|
590 |
|
|
|a eBooks on EBSCOhost
|b EBSCO eBook Subscription Academic Collection - Worldwide
|
650 |
|
0 |
|a Fortran 2008 (Computer program language)
|
650 |
|
6 |
|a Fortran 2008 (Langage de programmation)
|
650 |
|
7 |
|a COMPUTERS
|x General.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x C++
|2 bisacsh
|
650 |
|
7 |
|a FORTRAN (Lenguaje de programación)
|2 embne
|
650 |
|
7 |
|a Lenguajes de programación
|2 embne
|
650 |
|
7 |
|a Fortran 2008 (Computer program language)
|2 fast
|
700 |
1 |
|
|a Metcalf, Michael.
|
776 |
0 |
8 |
|i Print version:
|a Markus, Arjen.
|t Modern Fortran in practice.
|d Cambridge : Cambridge University Press, 2012
|z 9781107017900
|w (DLC) 2012000126
|w (OCoLC)778990500
|
856 |
4 |
0 |
|u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=458628
|z Texto completo
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH23984285
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH23038451
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH28321344
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH33350543
|
938 |
|
|
|a Coutts Information Services
|b COUT
|n 22677099
|c 70.00 GBP
|
938 |
|
|
|a EBL - Ebook Library
|b EBLB
|n EBL944736
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10578297
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 458628
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n 368485
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 9245302
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 9315856
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 9248375
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 8796424
|
994 |
|
|
|a 92
|b IZTAP
|