Changeset 809 for trunk/psLib/src/dataManip/psFFT.c
- Timestamp:
- May 28, 2004, 11:07:17 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/dataManip/psFFT.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataManip/psFFT.c
r808 r809 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $8 * @date $Date: 2004-05-28 21:0 4:34$7 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2004-05-28 21:07:17 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 160 160 161 161 /* if not a complex number, this is logically just a copy */ 162 if (! IS_PSELEMTYPE_COMPLEX(type)) {162 if (! PS_IS_PSELEMTYPE_COMPLEX(type)) { 163 163 // Warn user, as this is probably not expected 164 164 psLogMsg(__func__,PS_LOG_WARN,"Real portion of a non-Complex type called called for. " … … 219 219 220 220 /* if not a complex number, this is logically just zeroed image of same size */ 221 if (! IS_PSELEMTYPE_COMPLEX(type)) {221 if (! PS_IS_PSELEMTYPE_COMPLEX(type)) { 222 222 // Warn user, as this is probably not expected 223 223 psLogMsg(__func__,PS_LOG_WARN,"Imaginary portion of a non-Complex type called for. " … … 285 285 } 286 286 287 if ( IS_PSELEMTYPE_COMPLEX(type)) {287 if (PS_IS_PSELEMTYPE_COMPLEX(type)) { 288 288 psError(__func__,"The inputs to psImageComplex can not be complex."); 289 289 return NULL; … … 352 352 353 353 /* if not a complex number, this is logically just a image copy */ 354 if (! IS_PSELEMTYPE_COMPLEX(type)) {354 if (! PS_IS_PSELEMTYPE_COMPLEX(type)) { 355 355 // Warn user, as this is probably not expected 356 356 psLogMsg(__func__,PS_LOG_WARN,"Complex Conjugate of a non-Complex type called for. " … … 414 414 415 415 /* if not a complex number, this is not implemented */ 416 if (! IS_PSELEMTYPE_COMPLEX(type)) {416 if (! PS_IS_PSELEMTYPE_COMPLEX(type)) { 417 417 psError(__func__,"Power Spectrum for non-complex inputs is not implemented."); 418 418 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
