IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2005, 5:01:37 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

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

    r4315 r4330  
    1212 *  @author GLG, MHPCC
    1313 *
    14  *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-18 02:30:49 $
     14 *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-21 03:01:37 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3939 *        \f[ exp(-\frac{(x-mean)^2}{2\sigma^2}) \f]
    4040 *
    41  *  @return psF32      value on the gaussian curve given the input parameters
     41 *  @return float      value on the gaussian curve given the input parameters
    4242 */
    4343float psGaussian(
     
    218218 */
    219219psVector *psPolynomial2DEvalVector(
    220     const psPolynomial2D *myPoly,      ///< Coefficients for the polynomial
     220    const psPolynomial2D *poly,         ///< Coefficients for the polynomial
    221221    const psVector *x,                  ///< x locations at which to evaluate
    222222    const psVector *y                   ///< y locations at which to evaluate
     
    444444 *  @return psSpline1D*    new 1-D spline struct
    445445 */
    446 psSpline1D *psSpline1DAlloc(psS32 n,             ///< Number of spline polynomials
    447                             psS32 order,         ///< Order of spline polynomials
    448                             psF32 min,           ///< Lower boundary value of spline polynomials
    449                             psF32 max);          ///< Upper boundary value of spline polynomials
     446psSpline1D *psSpline1DAlloc(int n,               ///< Number of spline polynomials
     447                            int order,           ///< Order of spline polynomials
     448                            float min,           ///< Lower boundary value of spline polynomials
     449                            float max);          ///< Upper boundary value of spline polynomials
    450450
    451451/** Allocates a psSpline1D structure
     
    456456 */
    457457psSpline1D *psSpline1DAllocGeneric(const psVector *bounds,   ///< Bounds for spline polynomials
    458                                    psS32 order);             ///< Order of spline polynomials
     458                                   int order);               ///< Order of spline polynomials
    459459
    460460/** Evaluates 1-D spline polynomials at a specific coordinate.
    461461 * 
    462  *  @return psF32    result of spline polynomials evaluated at given location
    463  */
    464 psF32 psSpline1DEval(
     462 *  @return float    result of spline polynomials evaluated at given location
     463 */
     464float psSpline1DEval(
    465465    const psSpline1D *spline,          ///< Coefficients for spline polynomials
    466     psF32 x                            ///< location at which to evaluate
     466    float x                            ///< location at which to evaluate
    467467);
    468468
Note: See TracChangeset for help on using the changeset viewer.