Expand description
Migrated to dzuchun.ing
Modules§
- models
- Fitting models
Macros§
- fit
- A convenience macro for
fitfunction. You are free to call the function directly, if this macro is confusing to you. - fit_
stat - Same as
fit!, expect it computesFitStatinstead of simpleMinimizationReport. - test_
model_ derivative - Generates a test to numerically check, if your model has a correct jacobian implementation.
Structs§
- FitStat
- Result of
fit_stat. - Fitter
Unit - A helper unit type that is never constructed, and only used in type bounds.
- Generic
Array - Re-exports from
generic_arrayStruct representing a generic array -GenericArray<T, N>works like[T; N] - Levenberg
Marquardt - Re-export. See
LevenbergMarquardtLevenberg-Marquardt optimization algorithm. - Minimization
Report - Re-export. See
MinimizationReportInformation about the minimization.
Enums§
- Termination
Reason - Re-export. See
TerminationReasonReasons for terminating the minimization.
Traits§
- AsMatrix
View - Defines valid types to provide data with.
- Complex
Field - Trait shared by all complex fields and its subfields (like real numbers).
- Concat
- Re-exports from
generic_arrayDefinesGenericSequences which can be joined together, forming a larger array. - Conv
- Re-export from
generic_array_storageConvenience trait, used to define type conversions - Create
Problem - Indicates how exactly matrix data views should be converted into
LeastSquaresProblemsuitable forlevenberg_marquardtoperation. - FitBound
- A helper trait to simplify type bounds for a user. You probably should no see this.
- FitErr
Bound - A helper trait to simplify type bounds for a user. You probably should no see this.
- Real
Field - Trait shared by all reals.
- Split
- Re-exports from
generic_arrayDefines aGenericSequencethat 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 alongsideMinimizationReport.
Type Aliases§
- Data
Points 🔒 - U
- Re-export from
typenum