Changeset 3097 for trunk/psLib/src/dataManip/psMinimize.c
- Timestamp:
- Jan 26, 2005, 10:47:41 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/dataManip/psMinimize.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psMinimize.c
r3096 r3097 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.10 2$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-01-26 20:4 1:04$11 * @version $Revision: 1.103 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-01-26 20:47:41 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 162 162 163 163 XXX: This is F32 only 164 165 XXX: spline->knots must be psF32 164 166 *****************************************************************************/ 165 167 /* … … 177 179 PS_VECTOR_CHECK_NULL(y, NAN); 178 180 PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F32, NAN); 181 PS_VECTOR_CHECK_TYPE(spline->knots, PS_TYPE_F32, NULL); 179 182 180 183 psS32 n; … … 244 247 XXX: What happens if X is NULL, then an index vector is generated for X, but 245 248 that index vector lies outside the range vectors in mySpline? 249 250 XXX: Assumes mySpline->knots is psF32. Must add psU32 and psF64. 246 251 *****************************************************************************/ 247 252 psSpline1D *psVectorFitSpline1D(psSpline1D *mySpline, ///< The spline which will be generated. … … 252 257 PS_VECTOR_CHECK_NULL(y, NULL); 253 258 PS_VECTOR_CHECK_TYPE_F32_OR_F64(y, NULL); 259 PS_VECTOR_CHECK_TYPE(mySpline->knots, PS_TYPE_F32, NULL); 254 260 255 261 psTrace(".psLib.dataManip.psVectorFitSpline1D", 4,
Note:
See TracChangeset
for help on using the changeset viewer.
