Changeset 3264 for trunk/psLib/src/dataManip
- Timestamp:
- Feb 17, 2005, 9:26:25 AM (21 years ago)
- Location:
- trunk/psLib/src/dataManip
- Files:
-
- 14 edited
-
psConstants.h (modified) (1 diff)
-
psDataManipErrors.h (modified) (1 diff)
-
psFunctions.c (modified) (1 diff)
-
psFunctions.h (modified) (1 diff)
-
psMatrix.c (modified) (7 diffs)
-
psMatrix.h (modified) (1 diff)
-
psMinimize.c (modified) (1 diff)
-
psMinimize.h (modified) (1 diff)
-
psRandom.c (modified) (1 diff)
-
psRandom.h (modified) (1 diff)
-
psStats.c (modified) (1 diff)
-
psStats.h (modified) (1 diff)
-
psVectorFFT.c (modified) (1 diff)
-
psVectorFFT.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psConstants.h
r3182 r3264 6 6 * @author GLG, MHPCC 7 7 * 8 * @version $Revision: 1.5 4$ $Name: not supported by cvs2svn $9 * @date $Date: 2005-02-1 0 02:36:41$10 * 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii8 * @version $Revision: 1.55 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2005-02-17 19:26:23 $ 10 * 11 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 12 12 * 13 13 * XXX: Add parenthesis around all arguments so that these macros can be -
trunk/psLib/src/dataManip/psDataManipErrors.h
r3115 r3264 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-02- 03 00:54:10$9 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-02-17 19:26:23 $ 11 11 * 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 13 13 */ 14 14 -
trunk/psLib/src/dataManip/psFunctions.c
r3182 r3264 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.8 8$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-02-1 0 02:36:41$9 * @version $Revision: 1.89 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-02-17 19:26:23 $ 11 11 * 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 13 13 * 14 14 * XXX: What happens if the polyEVal functions are called with data of the wrong -
trunk/psLib/src/dataManip/psFunctions.h
r3149 r3264 12 12 * @author GLG, MHPCC 13 13 * 14 * @version $Revision: 1.4 2$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-02- 08 00:47:18$14 * @version $Revision: 1.43 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-02-17 19:26:23 $ 16 16 * 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 18 18 */ 19 19 -
trunk/psLib/src/dataManip/psMatrix.c
r3026 r3264 19 19 * 20 20 * @author Ross Harman, MHPCC 21 * @author Robert DeSonia, MHPCC 21 22 * 22 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $23 * @date $Date: 2005-0 1-17 22:17:29$23 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 24 * @date $Date: 2005-02-17 19:26:23 $ 24 25 * 25 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii26 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 26 27 */ 27 28 … … 191 192 PS_CHECK_DIMEN_AND_TYPE(inImage, PS_DIMEN_IMAGE, outImage); 192 193 PS_PTR_CHECK_NULL_GENERAL(outPerm, psMatrixLUD_EXIT); 193 psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type); 194 195 outImage = psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type); 196 194 197 PS_CHECK_SQUARE(inImage, outImage); 195 198 PS_CHECK_SQUARE(outImage, outImage); … … 299 302 PS_CHECK_DIMEN_AND_TYPE(inImage, PS_DIMEN_IMAGE, outImage); 300 303 PS_IMAGE_CHECK_EMPTY(inImage, outImage); 301 psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type);304 outImage = psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type); 302 305 PS_CHECK_SQUARE(inImage, outImage); 303 306 PS_CHECK_SQUARE(outImage, outImage); … … 383 386 PS_IMAGE_CHECK_EMPTY(inImage2, outImage); 384 387 PS_CHECK_DIMEN_AND_TYPE(inImage1, PS_DIMEN_IMAGE, outImage); 385 psImageRecycle(outImage, inImage2->numCols, inImage2->numRows, inImage2->type.type); 388 389 outImage = psImageRecycle(outImage, inImage2->numCols, inImage2->numRows, inImage2->type.type); 390 386 391 PS_CHECK_SQUARE(inImage1, outImage); 387 392 PS_CHECK_SQUARE(inImage2, outImage); … … 473 478 PS_CHECK_DIMEN_AND_TYPE(inImage, PS_DIMEN_IMAGE, outImage); 474 479 PS_IMAGE_CHECK_EMPTY(inImage, outImage); 475 psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type); 480 481 outImage = psImageRecycle(outImage, inImage->numCols, inImage->numRows, inImage->type.type); 476 482 477 483 // Initialize data … … 582 588 PS_CHECK_DIMEN_AND_TYPE(inVector, PS_DIMEN_VECTOR, outImage); 583 589 PS_VECTOR_CHECK_EMPTY(inVector, outImage); 584 psImageRecycle(outImage, 1, inVector->n, PS_TYPE_F64);590 outImage = psImageRecycle(outImage, 1, inVector->n, PS_TYPE_F64); 585 591 // More checks for PS_DIMEN_VECTOR 586 592 if (outImage->numCols > 1) { … … 601 607 PS_CHECK_DIMEN_AND_TYPE(inVector, PS_DIMEN_TRANSV, outImage); 602 608 PS_VECTOR_CHECK_EMPTY(inVector, outImage); 603 psImageRecycle(outImage, inVector->n, 1, PS_TYPE_F64);609 outImage = psImageRecycle(outImage, inVector->n, 1, PS_TYPE_F64); 604 610 // More checks for PS_DIMEN_TRANSV 605 611 if (outImage->numRows > 1) { -
trunk/psLib/src/dataManip/psMatrix.h
r3026 r3264 22 22 * @author Ross Harman, MHPCC 23 23 * 24 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $25 * @date $Date: 2005-0 1-17 22:17:29$24 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 25 * @date $Date: 2005-02-17 19:26:23 $ 26 26 * 27 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii27 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 28 28 */ 29 29 -
trunk/psLib/src/dataManip/psMinimize.c
r3182 r3264 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.10 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-02-1 0 02:36:41$11 * @version $Revision: 1.106 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-02-17 19:26:23 $ 13 13 * 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 15 15 * 16 16 * XXX: must follow coding name standards on local functions. -
trunk/psLib/src/dataManip/psMinimize.h
r3115 r3264 8 8 * @author GLG, MHPCC 9 9 * 10 * @version $Revision: 1.3 8$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-02- 03 00:54:10$10 * @version $Revision: 1.39 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-02-17 19:26:23 $ 12 12 * 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 14 14 * 15 15 */ -
trunk/psLib/src/dataManip/psRandom.c
r3009 r3264 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 1-15 01:15:09$12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-02-17 19:26:23 $ 14 14 * 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 16 16 */ 17 17 -
trunk/psLib/src/dataManip/psRandom.h
r2780 r3264 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $13 * @date $Date: 200 4-12-21 23:25:14$12 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-02-17 19:26:23 $ 14 14 * 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 16 16 */ 17 17 -
trunk/psLib/src/dataManip/psStats.c
r3115 r3264 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.11 2$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-02- 03 00:54:10$11 * @version $Revision: 1.113 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-02-17 19:26:23 $ 13 13 * 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 15 15 */ 16 16 -
trunk/psLib/src/dataManip/psStats.h
r3115 r3264 10 10 * @author George Gusciora, MHPCC 11 11 * 12 * @version $Revision: 1.3 8$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-02- 03 00:54:10$12 * @version $Revision: 1.39 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-02-17 19:26:23 $ 14 14 * 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 16 16 */ 17 17 #if !defined(PS_STATS_H) -
trunk/psLib/src/dataManip/psVectorFFT.c
r2283 r3264 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1. 29$ $Name: not supported by cvs2svn $8 * @date $Date: 200 4-11-04 22:14:17$7 * @version $Revision: 1.30 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-02-17 19:26:23 $ 9 9 * 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 11 11 */ 12 12 -
trunk/psLib/src/dataManip/psVectorFFT.h
r2283 r3264 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $10 * @date $Date: 200 4-11-04 22:14:17$9 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-02-17 19:26:23 $ 11 11 * 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 13 13 */ 14 14
Note:
See TracChangeset
for help on using the changeset viewer.
