Changeset 4330 for trunk/psLib/src/dataManip/psFunctions.h
- Timestamp:
- Jun 20, 2005, 5:01:37 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/dataManip/psFunctions.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psFunctions.h
r4315 r4330 12 12 * @author GLG, MHPCC 13 13 * 14 * @version $Revision: 1.4 7$ $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 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 39 39 * \f[ exp(-\frac{(x-mean)^2}{2\sigma^2}) \f] 40 40 * 41 * @return psF32value on the gaussian curve given the input parameters41 * @return float value on the gaussian curve given the input parameters 42 42 */ 43 43 float psGaussian( … … 218 218 */ 219 219 psVector *psPolynomial2DEvalVector( 220 const psPolynomial2D * myPoly,///< Coefficients for the polynomial220 const psPolynomial2D *poly, ///< Coefficients for the polynomial 221 221 const psVector *x, ///< x locations at which to evaluate 222 222 const psVector *y ///< y locations at which to evaluate … … 444 444 * @return psSpline1D* new 1-D spline struct 445 445 */ 446 psSpline1D *psSpline1DAlloc( psS32 n,///< Number of spline polynomials447 psS32 order,///< Order of spline polynomials448 psF32min, ///< Lower boundary value of spline polynomials449 psF32max); ///< Upper boundary value of spline polynomials446 psSpline1D *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 450 450 451 451 /** Allocates a psSpline1D structure … … 456 456 */ 457 457 psSpline1D *psSpline1DAllocGeneric(const psVector *bounds, ///< Bounds for spline polynomials 458 psS32 order);///< Order of spline polynomials458 int order); ///< Order of spline polynomials 459 459 460 460 /** Evaluates 1-D spline polynomials at a specific coordinate. 461 461 * 462 * @return psF32result of spline polynomials evaluated at given location463 */ 464 psF32psSpline1DEval(462 * @return float result of spline polynomials evaluated at given location 463 */ 464 float psSpline1DEval( 465 465 const psSpline1D *spline, ///< Coefficients for spline polynomials 466 psF32x ///< location at which to evaluate466 float x ///< location at which to evaluate 467 467 ); 468 468
Note:
See TracChangeset
for help on using the changeset viewer.
