Best Books for Learning Numerical Methods in C?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
14 replies · 4K views
laymanhobbist
Messages
29
Reaction score
2
any suggestions for a nice book regarding numerical methods in c?
 
Physics news on Phys.org
looks like a nice book ..

i have read many books with many "numerical methods" ..
but all those books lacks real c statements that does the math

thanks for the suggestion ..

let me check if this book is available anywhere for download ...
 
Older versions are available on the site for free.
 
D H said:
Yeah, but they are more aptly called "Numerical Methods in C-tran"

"The determined Real Programmer can write FORTRAN programs in any language."
 
It could be COBOL...
 
i downloaded the book from library.nu

now i have to understand methods like bisection ..

then put those methods in c statements

tough thing...
 
laymanhobbist said:
i downloaded the book from library.nu

now i have to understand methods like bisection ..

then put those methods in c statements

tough thing...

How long have you been programming for?
 
other than "hello world" ? nothing

this is in our syllabus ..which is why i think i am going to loose my degree
 
I do recall a book (or series of books) that go under the title "Numerical Recipes in C". If it is at your library you may want to check it out.
 
D H said:
Yeah, but they are more aptly called "Numerical Methods in C-
tran"

chiro said:
I do recall a book (or series of books) that go under the title "Numerical Recipes in C". If it is at your library you may want to check it out.

Same book, but each edition gets longer.

IIRC, the code in the first edition was Fortran (and more like Fortran 66 than Fortran 95). In the early (now out of print but free online) editions, the Fortran code was machine-translated into other languages, so it doesn't look much like idiomatic C, Pascal, or whatever.

On the other hand, the explanations of the algorithms are good, and the code does actually work - which is better value for money than some "free" software on offer!

In the current (not-free) editions the code has been rewritten, "OOPified", etc.
 
laymanhobbist said:
i downloaded the book from library.nu

now i have to understand methods like bisection ..

then put those methods in c statements

tough thing...

I am not sure the numerical recipes covers it, but you might check out a number of libraries which are called -if I recollect correctly- BLAST, LAPACK, LINPACK, etc. A number of things you might want to implement might already have been solved.
 
BLAS (not BLAST) LAPACK and LINPACK are certainly "industry standard" libraries for solving linear equations and eigensolutions, but the NR books cover a much wider range of numerical analysis topics.