Skip to content

Commit be4c994

Browse files
committed
Add least squares flowchart
1 parent f2401d6 commit be4c994

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,23 @@ flowchart TB
3737
middle2--No-->b4[HYBRD1]
3838
```
3939

40+
Decision tree for nonlinear least squares porblems
41+
42+
```mermaid
43+
flowchart TB
44+
start[Is the Jacobian matrix available?]
45+
start--Yes-->m1[Is storage limited?]
46+
start--No-->m2[Is flexibility required?]
47+
m1--Yes-->ml1[Is flexibility required?]
48+
m1--No-->ml2[Is flexibility required?]
49+
ml1--Yes-->b1[LMSTR]
50+
ml1--No-->b2[LMSTR1]
51+
ml2--Yes-->b3[LMDER]
52+
ml2--No-->b4[LMDER1]
53+
m2--Yes-->mr1[LMDIF]
54+
m2--No-->mr2[LMDIF1]
55+
```
56+
4057
### Documentation
4158

4259
* The API documentation for the latest default branch can be found [here](https://fortran-lang.github.io/minpack/). This is generated by processing the source files with [FORD](https://github.com/Fortran-FOSS-Programmers/ford).

0 commit comments

Comments
 (0)