Package gov.nih.mipav.model.algorithms
Class FitLaplace
java.lang.Object
gov.nih.mipav.model.algorithms.NLConstrainedEngine
gov.nih.mipav.model.algorithms.NLFittedFunction
gov.nih.mipav.model.algorithms.FitLaplace
FitLaplace -fits an array of points to a normal curve, general from f = a*exp(Math.abs(x-mu)/beta)
Will also perform thresholding techniques to determine useful data points for fitting
- Version:
- 0.1
- Author:
- senseneyj
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate doubleAmplitude parameterprivate doubleBeta parameterprivate intLocation in xSeries where Gaussian data endsprivate intLocation in xSeries where Gaussian data startsprivate intprivate doubleCenter parameterFields inherited from class gov.nih.mipav.model.algorithms.NLFittedFunction
chisq, EPSILON, MAX_ITR, MIN_ITR, xSeries, yDataFitted, ySeriesFields inherited from class gov.nih.mipav.model.algorithms.NLConstrainedEngine
a, absoluteConvergence, analyticalJacobian, bl, bounds, bu, ctrlMat, dyda, gues, internalScaling, jacobian, maxIterations, nPts, outputMes, param, parameterConvergence, relativeConvergence, residuals, secondAllowed, stdv, tolerance -
Constructor Summary
ConstructorsConstructorDescriptionFitLaplace - test constructor, builds and test function.FitLaplace(int nPoints, double[] xData, double[] yData) FitLaplace.FitLaplace(int nPoints, float[] xData, float[] yData) Constructs new fit laplace distribution. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidCalculates chi squaredprotected voidCalculates yDataFittedvoidDisplay results of displaying exponential fitting parameters.private doubledLdA(double x) Partial derivative of laplace dist with respect to A.private doubledLdbeta(double x) Partial derivative of laplace dist with respect to beta.private doubledLdmu(double x) Partial derivative of laplace dist with respect to mu.voiddriver()Starts the analysis.private voidvoidfitToFunction(double[] a, double[] residuals, double[][] covarMat) fitToFunction communicates with 3 protected variables param, nPts, and ctrlMat ctrlMat is used as a wrapper for ctrl or lctrl.protected Jama.MatrixJacobian used for non-linear least squares fitting.protected Jama.MatrixCalculates the residuals for a given function, not implemented since some functions might prefer to only use a subset of data points, or not use yDataFitted if working during an iterationprivate doublelaplace(double x) Gaussian evaluated at a point with given parametersprivate voidtestData()Test data to test fitting of gaussian.Methods inherited from class gov.nih.mipav.model.algorithms.NLFittedFunction
getChisq, getFittedY, getMedianMethods inherited from class gov.nih.mipav.model.algorithms.NLConstrainedEngine
dumpTestResults, fitToTestFunction, getChiSquared, getExitStatus, getIterations, getParameters, getResiduals, statusMessage
-
Field Details
-
dataStart
private int dataStartLocation in xSeries where Gaussian data starts -
dataEnd
private int dataEndLocation in xSeries where Gaussian data ends -
amp
private double ampAmplitude parameter -
mu
private double muCenter parameter -
beta
private double betaBeta parameter -
iters
private int iters
-
-
Constructor Details
-
FitLaplace
public FitLaplace()FitLaplace - test constructor, builds and test function. -
FitLaplace
public FitLaplace(int nPoints, double[] xData, double[] yData) FitLaplace.- Parameters:
nPoints- number of points in the functionxData- DOCUMENT ME!yData- DOCUMENT ME!
-
FitLaplace
public FitLaplace(int nPoints, float[] xData, float[] yData) Constructs new fit laplace distribution.- Parameters:
nPoints- Number of points in the functionxData- DOCUMENT ME!yData- DOCUMENT ME!
-
-
Method Details
-
estimateInitial
private void estimateInitial() -
driver
public void driver()Starts the analysis. For some reason a guess with the wrong sign for a2 will not converge. Therefore, try both sign and take the one with the lowest chi-squared value.- Overrides:
driverin classNLConstrainedEngine
-
calculateChiSq
protected void calculateChiSq()Description copied from class:NLFittedFunctionCalculates chi squared- Specified by:
calculateChiSqin classNLFittedFunction
-
calculateFittedY
protected void calculateFittedY()Description copied from class:NLFittedFunctionCalculates yDataFitted- Specified by:
calculateFittedYin classNLFittedFunction
-
displayResults
public void displayResults()Display results of displaying exponential fitting parameters.- Specified by:
displayResultsin classNLFittedFunction
-
fitToFunction
public void fitToFunction(double[] a, double[] residuals, double[][] covarMat) Description copied from class:NLConstrainedEnginefitToFunction communicates with 3 protected variables param, nPts, and ctrlMat ctrlMat is used as a wrapper for ctrl or lctrl. Evaluates the residuals or the Jacobian at a certain a[]- Specified by:
fitToFunctionin classNLConstrainedEngine- Parameters:
a- DOCUMENT ME!residuals- DOCUMENT ME!covarMat- DOCUMENT ME!
-
testData
private void testData()Test data to test fitting of gaussian. -
laplace
private double laplace(double x) Gaussian evaluated at a point with given parameters -
dLdA
private double dLdA(double x) Partial derivative of laplace dist with respect to A. -
dLdmu
private double dLdmu(double x) Partial derivative of laplace dist with respect to mu. -
dLdbeta
private double dLdbeta(double x) Partial derivative of laplace dist with respect to beta. -
generateJacobian
protected Jama.Matrix generateJacobian()Jacobian used for non-linear least squares fitting. -
generateResiduals
protected Jama.Matrix generateResiduals()Description copied from class:NLFittedFunctionCalculates the residuals for a given function, not implemented since some functions might prefer to only use a subset of data points, or not use yDataFitted if working during an iteration- Specified by:
generateResidualsin classNLFittedFunction- Returns:
-