summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.