IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 8, 2025, 4:46:11 PM (12 months ago)
Author:
eugene
Message:

add IRLS versions of polynomial fits

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMinimizePolyFit.h

    r21183 r42824  
    134134);
    135135
     136bool psVectorIRLSFitPolynomial1D(
     137    psPolynomial1D *poly,
     138    psStats *stats,
     139    const psVector *mask,
     140    psVectorMaskType maskValue,
     141    const psVector *f,
     142    const psVector *fErr,
     143    const psVector *x
     144);
     145
     146bool psVectorIRLSFitPolynomial2D(
     147    psPolynomial2D *poly,
     148    psStats *stats,
     149    const psVector *mask,
     150    psVectorMaskType maskValue,
     151    const psVector *f,
     152    const psVector *fErr,
     153    const psVector *x,
     154    const psVector *y
     155);
     156
     157bool psVectorIRLSFitPolynomial3D(
     158    psPolynomial3D *poly,
     159    psStats *stats,
     160    const psVector *mask,
     161    psVectorMaskType maskValue,
     162    const psVector *f,
     163    const psVector *fErr,
     164    const psVector *x,
     165    const psVector *y,
     166    const psVector *z
     167);
     168
     169bool psVectorIRLSFitPolynomial4D(
     170    psPolynomial4D *poly,
     171    psStats *stats,
     172    const psVector *mask,
     173    psVectorMaskType maskValue,
     174    const psVector *f,
     175    const psVector *fErr,
     176    const psVector *x,
     177    const psVector *y,
     178    const psVector *z,
     179    const psVector *t
     180);
     181
    136182/// @}
    137183#endif // #ifndef PS_MINIMIZE_POLYFIT_H
Note: See TracChangeset for help on using the changeset viewer.