You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,23 @@ flowchart TB
37
37
middle2--No-->b4[HYBRD1]
38
38
```
39
39
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
+
40
57
### Documentation
41
58
42
59
* 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