Introduction to Numerical Analysis Using MATLAB

In this appendix we list all of the MATLAB functions supplied in this book. These functions are contained in a CD-Rom attached to the cover of the book. The CD-ROM included with Introduction to Numerical Analysis Using MATLAB by Rizwan Butt contains a MATLAB program for each of the methods presented in the book. Every program is illustrated with a sample problem or example that is closely correlates to the text. The programs can easily be modified for other problems by making minor changes. All the programs are designed to run on a minimally configured computer. Minimal hard disk space plus the MATLAB package are all that is needed to run the programs. All the programs are given as ASCII files called M-files with the .m extension. They can be altered using any word processor that creates standard ASCII files. The M-files can run from within MATLAB by entering the name without the .m extension. For example, fixpt.m can be run using fixpt as the command. The files should be placed in the MATLAB\work subdirectory of MATLAB.
| MATLAB Function | Definitions | Chapter Two |
|---|---|---|
| bisect | Bisection method | program 2.1 |
| falseP | False position method | program 2.2 |
| fixpt | Fixed-point method | program 2.3 |
| newton | Newton s method | program 2.4 |
| secant | Secant method | program 2.5 |
| mnewtonl | First modified Newton s method | program 2.6 |
| mnewton2 | Second modified Newton s method | program 2.7 |
| AitK | Aitken s ? 2 method | program 2.8 |
| newton2 | Newton s method for system | program 2.9 |
| HornM | Horner s method | program 2.10 |
| Muller | Muller s method | program 2.11 |
| BairSM |