polykin.math.roots¤
VectorRootResult
dataclass
¤
Dataclass with vector root solution results.
| ATTRIBUTE | DESCRIPTION |
|---|---|
success |
If
TYPE:
|
message |
Description of the exit status.
TYPE:
|
nfeval |
Number of function evaluations.
TYPE:
|
niter |
Number of iterations.
TYPE:
|
x |
Root value.
TYPE:
|
f |
Function (residual) value at root.
TYPE:
|
Source code in src/polykin/math/roots/results.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |