Crate nacfahi

Crate nacfahi 

Source
Expand description

Migrated to dzuchun.ing

Modules§

models
Fitting models

Macros§

fit
A convenience macro for fit function. You are free to call the function directly, if this macro is confusing to you.
fit_stat
Same as fit!, expect it computes FitStat instead of simple MinimizationReport.
test_model_derivative
Generates a test to numerically check, if your model has a correct jacobian implementation.

Structs§

FitStat
Result of fit_stat.
FitterUnit
A helper unit type that is never constructed, and only used in type bounds.
GenericArray
Re-exports from generic_array Struct representing a generic array - GenericArray<T, N> works like [T; N]
LevenbergMarquardt
Re-export. See LevenbergMarquardt Levenberg-Marquardt optimization algorithm.
MinimizationReport
Re-export. See MinimizationReport Information about the minimization.

Enums§

TerminationReason
Re-export. See TerminationReason Reasons for terminating the minimization.

Traits§

AsMatrixView
Defines valid types to provide data with.
ComplexField
Trait shared by all complex fields and its subfields (like real numbers).
Concat
Re-exports from generic_array Defines GenericSequences which can be joined together, forming a larger array.
Conv
Re-export from generic_array_storage Convenience trait, used to define type conversions
CreateProblem
Indicates how exactly matrix data views should be converted into LeastSquaresProblem suitable for levenberg_marquardt operation.
FitBound
A helper trait to simplify type bounds for a user. You probably should no see this.
FitErrBound
A helper trait to simplify type bounds for a user. You probably should no see this.
RealField
Trait shared by all reals.
Split
Re-exports from generic_array Defines a GenericSequence that can be split into two parts at a given pivot index.

Functions§

fit
Main interface point. For more convenient use (mostly - to omit some of the fields), you might want to look into fit! macro.
fit_stat
Same as fit, but outputs a bunch of other stuff alongside MinimizationReport.

Type Aliases§

DataPoints 🔒
U
Re-export from typenum