Uses of Class
vec_math.GeneralLinearRegression

Packages that use GeneralLinearRegression
astro   
astro.fits   
stella.util   
vec_math   
 

Uses of GeneralLinearRegression in astro
 

Methods in astro that return GeneralLinearRegression
static GeneralLinearRegression AsciiCatalog.solve(List<VectorG> zxy)
          Solver for z = a1*x+a2*y+a3.
static GeneralLinearRegression AsciiCatalog.solve0(List<VectorG> zxy)
          Solver for z = a1*x+a2*y+a3.
static GeneralLinearRegression AsciiCatalog.solve2(List<VectorG> zxy)
          Solver for z = a1*x+a2*y+a3*y^2+a4.
 

Uses of GeneralLinearRegression in astro.fits
 

Methods in astro.fits that return GeneralLinearRegression
static GeneralLinearRegression Overscan.setupFit(Function[] legendre, int min, int max, Vector2D[] adu)
          Converts an adu with the fit axis on the first index plus the fitting functions into a general linear regression.
static GeneralLinearRegression FitsStatistic.shuffleForRegression(List<VectorG> valid, Multidimensional[] model, boolean sigma)
          Shuffels ADU 4-vectors with x, y, ADU, [sigma] into the format for a general linear regression and fuels them into one.
 

Uses of GeneralLinearRegression in stella.util
 

Fields in stella.util declared as GeneralLinearRegression
private  GeneralLinearRegression GuiderMagnitudes.glr
          The general linear least squres solver.
 

Methods in stella.util that return GeneralLinearRegression
 GeneralLinearRegression NasmythPointingModel.getHarmonicXFit(SphericalHarmonics.LM[] lm, double hlow, double zenith)
          We return a pure harmonic model.
 GeneralLinearRegression NasmythPointingModel.getHarmonicYFit(SphericalHarmonics.LM[] lm, double hlow, double zenith)
          We return a pure harmonic model.
 

Methods in stella.util with parameters of type GeneralLinearRegression
 VectorG NasmythPointingModel.solve(DataModel dm, GeneralLinearRegression solution)
           
 

Uses of GeneralLinearRegression in vec_math
 

Methods in vec_math that return GeneralLinearRegression
static GeneralLinearRegression GeneralLinearRegression.harmonic(VectorG t, VectorG y, VectorG sigma, double omega)
          Creates an offset sine/cosine wave to the data.
static GeneralLinearRegression GeneralLinearRegression.legendre(int order, VectorG x, VectorG y, VectorG sigma)
          Does a linear regression on Legendre polynomials.
static GeneralLinearRegression GeneralLinearRegression.line(VectorG x, VectorG y, VectorG sigma)
          Creates a general lineare regression that is a fit to a straight line.
static GeneralLinearRegression GeneralLinearRegression.parabola(VectorG x, VectorG y, VectorG sigma)
          Creates a general lineare regression that is a fit to a parabola.
static GeneralLinearRegression GeneralLinearRegression.polynomial(int order, VectorG x, VectorG y, VectorG sigma)
          Creates a general lineare regression that is a fit to a polynominal of certain order.
private static GeneralLinearRegression Bootstrap.prepareRegression(Object[] fitting, VectorG[] x, VectorG y, VectorG err)
          Prepares a GeneralLinearRegression from the funtions, dependables and measurements passed over.