summaryrefslogtreecommitdiff
path: root/Functions
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2024-12-21 20:58:38 +0100
committerChristian Kolset <christian.kolset@gmail.com>2024-12-21 20:58:38 +0100
commitdc3a7dee065876f6c460f65e3842948cfea28af6 (patch)
tree0c6e3e3f303d5f52c972480ff761f42fdefddb27 /Functions
parent58704cbabc69299308743b375d7a473518de2713 (diff)
fixed header
Diffstat (limited to 'Functions')
-rw-r--r--Functions/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Functions/README.md b/Functions/README.md
index c8805c2..c8407de 100644
--- a/Functions/README.md
+++ b/Functions/README.md
@@ -112,7 +112,7 @@ Function returns a special matrix A with the following criteria:
- The function returns a sensible error if the user does not input exactly two arguments.
Synopsis: `[root, fx, ea, iter] = falsePosition(func, xl, xu, es, maxit, varargin)`.
-## Input
+### Input
- `func` - the function being evaluated.
- `xl` - lower bound guess.
- `xu` - upper bound guess.
@@ -121,8 +121,8 @@ Function returns a special matrix A with the following criteria:
- `varargin` - any additional parameters used by the function
-## Output
+### Output
- `A` - special matrix with the appropriate rules
-## Notes:
+### Notes:
This function has not much of a practical application, rather a very good exercise for beginners to get started with the basics of matrix manipulation and user-defined functions.