Have one to sell? Sell yours here
Numerical Recipes Code CD-ROM with Windows or Macintosh Single Screen License CD-ROM: Includes Source Code for Numerical Recipes in C, Fortran 77, ... BASIC, Lisp and Modula 2 plus many extras
 
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Numerical Recipes Code CD-ROM with Windows or Macintosh Single Screen License CD-ROM: Includes Source Code for Numerical Recipes in C, Fortran 77, ... BASIC, Lisp and Modula 2 plus many extras [CD-ROM]

William H. Press (Author), Saul A. Teukolsky (Author), William T. Vetterling (Author), Brian P. Flannery (Author)
3.8 out of 5 stars  See all reviews (5 customer reviews)


Available from these sellers.


Formats

Amazon Price New from Used from
Hardcover --  
Paperback --  
Multimedia CD --  
Multimedia CD, September 28, 1996 --  
There is a newer edition of this item:
Numerical Recipes Source Code CD-ROM 3rd Edition: The Art of Scientific Computing Numerical Recipes Source Code CD-ROM 3rd Edition: The Art of Scientific Computing 3.0 out of 5 stars (1)
$56.92
In Stock.

Book Description

September 28, 1996
The Numerical Recipes Code CD-ROM contains, in a single omnibus edition, all the source code for the routines and examples from: Numerical Recipes in Fortran 77: The Art of Scientific Computing (Second Edition), Numerical Recipes in Fortran 90: The Art of Parallel Scientific Computing, Numerical Recipes in C: The Art of Scientific Computing (Second Edition), both ANSI and K&R C, Numerical Recipes in Pascal: The Art of Scientific Computing,and Numerical Recipes Routines and Examples in BASIC. The ISO 9660 standard format can be used by both IBM PC and Macintosh compatible computers. HTML files included on the CD-ROM allow the use of any Web browser to navigate among all the program files. The CD-ROM also contains the complete public domain SLATEC Common Mathematical Library, a comprehensive collection of over 1400 mathematical and statistical routines. A code use license is included.


Editorial Reviews

Review

"This monumental and classic work is beautifully produced and of literary as well as mathematical quality. It is an essential component of any serious scientific or engineering library." Computing Reviews

Book Description

A single CD-ROM containing all the source code for the routines and examples from: Numerical Recipes in FORTRAN 77 (Second Edition), Numerical Recipes in FORTRAN 90, Numerical Recipes in C (Second Edition), Numerical Recipes in Pascal, and Numerical Recipes Routines and Examples in BASIC, plus the public domain SLATEC library, all in a format suitable for IBM PC and Macintosh computers. A code use license is included.

Product Details

  • CD-ROM
  • Publisher: Cambridge University Press; 2 edition (September 28, 1996)
  • Language: English
  • ISBN-10: 0521576083
  • ISBN-13: 978-0521576086
  • Product Dimensions: 8.6 x 5.8 x 0.8 inches
  • Shipping Weight: 4.8 ounces
  • Average Customer Review: 3.8 out of 5 stars  See all reviews (5 customer reviews)
  • Amazon Best Sellers Rank: #7,968,970 in Books (See Top 100 in Books)

More About the Authors

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

5 Reviews
5 star:
 (2)
4 star:
 (2)
3 star:    (0)
2 star:    (0)
1 star:
 (1)
 
 
 
 
 
Average Customer Review
3.8 out of 5 stars (5 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

45 of 49 people found the following review helpful:
1.0 out of 5 stars Very bad programs. Stay away. Buy the book instead., August 23, 1999
By A Customer
This review is from: Numerical Recipes Code CD-ROM with Windows or Macintosh Single Screen License CD-ROM: Includes Source Code for Numerical Recipes in C, Fortran 77, ... BASIC, Lisp and Modula 2 plus many extras (CD-ROM)
This is a disk with programs from the book Numerical Recipes. There are no comments in the code, help file is just an index of routines without any explanations. Routines are translations of Fortran code into C but authors did not make any effort to conform to standard C conventions. All the arrays start at 1 instead of 0 which makes the code useless the way it is written - user must modify it. No const attribute is ever used. And this is plain C so if you write a C++ code and hope for seeing exceptions or references, forget it. You are better off buying a book and writing routines you need based on the published code. It is really a shame that such a thing is sold (and tremendously overpriced). jstrompf@soil.nl in his review obviously meant the book and not the CD-ROM, his positive review is misplaced.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 4 people found the following review helpful:
5.0 out of 5 stars Rock Solid, August 16, 2001
By A Customer
This review is from: Numerical Recipes Code CD-ROM with Windows or Macintosh Single Screen License CD-ROM: Includes Source Code for Numerical Recipes in C, Fortran 77, ... BASIC, Lisp and Modula 2 plus many extras (CD-ROM)
Get the book w/disk. If you're programming numerical routines in C, there's no better place to go. I've used the first edition of the book w/software for more than 10 years and I'll keep using this stuff till the end. Translating from C to C++ has been a very easy task these 10 years. The important thing is that these recipes are fast, intelligently done, and the book (which you should get) explains everything, including the appropriate choice of recipe for your problem. I've used at least 30 of the routines from these guys and they have all been rock solid. If I had a problem with any of them, it was because I messed with the routine, not because there was a problem with the supplied software. I have yet to run into a numerical issue that these guys do not have a great solution for.

Anyone familiar with the book knows that using the book's dynamic memory allocation routines (provided in Appendix D in my edition of the book and included in the software) allows you to start arrays anywhere you like, 0,1, or 1001, it doesn't matter. These dynamic memory allocation routines also have other major advantages such as minimizing the needed memory for a large simulation by allowing you to easily create new arrays as you need them, discard others immediately when you are done with them, adjust the size of an array according to the need at a specific point in your program, etc. Their way of handling this is so convenient that I never have had a memory allocation need that it does not meet. But this is just one detail; the main thing is that their attention to detail is at this level throughout. I cannot imagining going to another reference.

Get the book, read it as needed (you don't need to read a lot to solve a specific programming problem), and do numerical analysis with as much ease as there is to be had in C or C++ programming.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful:
4.0 out of 5 stars Excellent classic mathematics and programming text, January 11, 2009
By 
Strange that I should get this book after I stopped using an old fashioned programming language and started using Mathematica.
There are still algorithms used in this text that haven't been "built-in" in Mathematica. Ten years ago I used texts much like this to program
on a daily basis,so I know that although this is well written it still leaves a lot for the programmer to fill in. I even found some material I still need to learn
like boundary value methods in differential equations.
I enjoyed reading this text.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews



Only search this product's reviews




Suggested Tags from Similar Products

 (What's this?)
Be the first one to add a relevant tag (keyword that's strongly related to this product).
 

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums



So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject