public class Gaussian3DFixedRadius extends Object implements FitFunction
This fitting target function is defined over dimension n
, by the
following 4
parameters:
f(x) = A × exp( - S )and
S = A0 * exp( -( x - x0 ) ^ 2 / ( 2 * sigmaxy ^ 2 ) - ( y - y0 ) ^ 2 / ( 2 * sigmaxy ^ 2 ) - ( z - z0 ) ^ 2 / ( 2 * sigmaz ^ 2 ) )
Constructor and Description |
---|
Gaussian3DFixedRadius() |
Modifier and Type | Method and Description |
---|---|
double |
grad(double[] pos,
double[] a,
int ak) |
double |
hessian(double[] pos,
double[] a,
int r,
int c) |
double |
val(double[] x,
double[] a) |
public double val(double[] x, double[] a)
val
in interface FitFunction
public double grad(double[] pos, double[] a, int ak)
grad
in interface FitFunction
public double hessian(double[] pos, double[] a, int r, int c)
hessian
in interface FitFunction
Copyright © 2015–2021 Fiji. All rights reserved.