diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2025-03-20 16:16:24 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2025-03-20 16:16:24 -0600 |
| commit | 1fb76dac16c3984e6f674fa2f3466eb00488a50b (patch) | |
| tree | 8960251d74a2b5d99d5e8868c9d39dbb2cedde4a /Functions | |
| parent | d6c4f2d5467929f854391111419c726fc2d3021c (diff) | |
Fixed typo in README.md. Positive to Position in the falsePosition method.main
Diffstat (limited to 'Functions')
| -rw-r--r-- | Functions/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/README.md b/Functions/README.md index 91eebff..a87ef9e 100644 --- a/Functions/README.md +++ b/Functions/README.md @@ -1,7 +1,7 @@ # Functions This directory contains the functions written throught the course. - [days.m](days.m) - computes days elapsed in a year. -- [falsePositive.m](falsePositive.m) - numberical root finding function. +- [falsePosition.m](falsePosition.m) - numberical root finding function. - [heun.m](heun.m) - Heuns method for solving ODE's. - [luFactor.m](luFactor.m) - LU Decomposition. - [simpson.m](simpson.m) - numerical integration technique. @@ -26,7 +26,7 @@ The syntax of the function is `days(<months>, <days>, <leap>)` where `<months>` --- -## [falsePositive.m](falsePositive.m) +## [falsePosition.m](falsePosition.m) Function finds the root of an anonymous function using the false position method. Synopsis: `[root, fx, ea, iter] = falsePosition(func, xl, xu, es, maxit, varargin)`. |
