Uses of Class
de.gsi.math.fitter.LinearRegressionFitter.REG_METHOD
-
Packages that use LinearRegressionFitter.REG_METHOD Package Description de.gsi.math.fitter -
-
Uses of LinearRegressionFitter.REG_METHOD in de.gsi.math.fitter
Methods in de.gsi.math.fitter that return LinearRegressionFitter.REG_METHOD Modifier and Type Method Description LinearRegressionFitter.REG_METHODLinearRegressionFitter. getRegularisationMethod()static LinearRegressionFitter.REG_METHODLinearRegressionFitter.REG_METHOD. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LinearRegressionFitter.REG_METHOD[]LinearRegressionFitter.REG_METHOD. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.gsi.math.fitter with parameters of type LinearRegressionFitter.REG_METHOD Modifier and Type Method Description voidLinearRegressionFitter. setRegularisationMethod(LinearRegressionFitter.REG_METHOD method)KStandard: standard SVD-type cut
1/lambda_i -> 1/lambda_i
for (|lambda_i/lambda_0| > getSVDCutOff & |1/lambda_i| > 1e-16 1/lambda_i -> 0
otherwise (numerical stability) Tikhonov type regularisation:
1/lambda_i -> lambda_i/(lambda_i^2+mu^2) for |1/lambda_i| > 1e-16 1/lambda_i
-