Changeset 3115 for trunk/psLib/src/math/psMinimize.c
- Timestamp:
- Feb 2, 2005, 2:54:13 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psMinimize.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psMinimize.c
r3097 r3115 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.10 3$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-0 1-26 20:47:41$11 * @version $Revision: 1.104 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-02-03 00:54:10 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 96 96 XXX: do an F64 version? 97 97 *****************************************************************************/ 98 psF32 *CalculateSecondDerivs(const psVector* restrictx, ///< Ordinates (or NULL to just use the indices)99 const psVector* restricty) ///< Coordinates98 psF32 *CalculateSecondDerivs(const psVector* x, ///< Ordinates (or NULL to just use the indices) 99 const psVector* y) ///< Coordinates 100 100 { 101 101 psTrace(".psLib.dataManip.CalculateSecondDerivs", 4, … … 167 167 /* 168 168 psF32 p_psNRSpline1DEval(psSpline1D *spline, 169 const psVector* restrictx,170 const psVector* restricty,169 const psVector* x, 170 const psVector* y, 171 171 psF32 X) 172 172 { … … 250 250 XXX: Assumes mySpline->knots is psF32. Must add psU32 and psF64. 251 251 *****************************************************************************/ 252 psSpline1D *psVectorFitSpline1D(psSpline1D *mySpline, ///< The spline which will be generated.253 const psVector* restrictx, ///< Ordinates (or NULL to just use the indices)254 const psVector* restricty, ///< Coordinates255 const psVector* restrictyErr) ///< Errors in coordinates, or NULL252 psSpline1D *psVectorFitSpline1D(psSpline1D *mySpline, ///< The spline which will be generated. 253 const psVector* x, ///< Ordinates (or NULL to just use the indices) 254 const psVector* y, ///< Coordinates 255 const psVector* yErr) ///< Errors in coordinates, or NULL 256 256 { 257 257 PS_VECTOR_CHECK_NULL(y, NULL); … … 833 833 *****************************************************************************/ 834 834 psPolynomial1D *VectorFitPolynomial1DCheby(psPolynomial1D* myPoly, 835 const psVector* restrictx,836 const psVector* restricty,837 const psVector* restrictyErr)835 const psVector* x, 836 const psVector* y, 837 const psVector* yErr) 838 838 { 839 839 psS32 j; … … 911 911 *****************************************************************************/ 912 912 psPolynomial1D* VectorFitPolynomial1DOrd(psPolynomial1D* myPoly, 913 const psVector* restrictx,914 const psVector* restricty,915 const psVector* restrictyErr)913 const psVector* x, 914 const psVector* y, 915 const psVector* yErr) 916 916 { 917 917 psS32 polyOrder = myPoly->n; … … 1018 1018 *****************************************************************************/ 1019 1019 psPolynomial1D* psVectorFitPolynomial1D(psPolynomial1D* myPoly, 1020 const psVector* restrictx,1021 const psVector* restricty,1022 const psVector* restrictyErr)1020 const psVector* x, 1021 const psVector* y, 1022 const psVector* yErr) 1023 1023 { 1024 1024 PS_POLY_CHECK_NULL(myPoly, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.
