NonlinearFitControllerCreateOrReplaceFunctionPlotItems(XYPlotLayer, NonlinearFitDocument, String, Boolean, Boolean, Double, Double, Int32, MatrixDouble) Method |
Creates or replaces function plot items after a successful Levenberg-Marquardt-Fit.
Namespace: Altaxo.Gui.Analysis.NonLinearFittingAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static string CreateOrReplaceFunctionPlotItems(
XYPlotLayer xylayer,
NonlinearFitDocument doc,
string previousFitDocumentIdentifier,
bool showUnusedDependentVariables,
bool showConfidenceBands,
double confidenceLevel,
double sigmaSquare,
int numberOfFitPoints,
Matrix<double> covarianceMatrix
)
Parameters
- xylayer XYPlotLayer
- The XY-Plot Layer for which to replace the plot items.
- doc NonlinearFitDocument
- The fit document.
- previousFitDocumentIdentifier String
- The fit document identifier of the previous fit.
- showUnusedDependentVariables Boolean
- If set to true, shows the unused dependent variables of the fit, too.
- showConfidenceBands Boolean
- If set to true, shows the confidence bands of the fit (next parameter is the confidence level).
- confidenceLevel Double
- The confidence level (only used if showConfidenceBands is set to true).
- sigmaSquare Double
- The Sigma² of fit.
- numberOfFitPoints Int32
- Number of fit points.
- covarianceMatrix MatrixDouble
- The covariance matrix of the fit.
Return Value
StringThe new identifier of the fit.
See Also