Changeset 8232 for trunk/psLib/src/fft/psVectorFFT.c
- Timestamp:
- Aug 8, 2006, 1:32:23 PM (20 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
fft/psVectorFFT.c (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src
- Property svn:ignore
-
old new 10 10 libpslib.la.temp 11 11 config.h.in 12 psErrorText.h13 12 *.bb 14 13 *.bbg
-
- Property svn:ignore
-
trunk/psLib/src/fft/psVectorFFT.c
r4540 r8232 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.3 3$ $Name: not supported by cvs2svn $8 * @date $Date: 200 5-07-12 19:12:01$7 * @version $Revision: 1.34 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2006-08-08 23:32:23 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 22 22 #include "psLogMsg.h" 23 23 24 #include "psErrorText.h" 24 25 25 26 26 #define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE … … 63 63 } else { 64 64 psError(PS_ERR_BAD_PARAMETER_VALUE, true, 65 PS_ERRORTEXT_psVectorFFT_DIRECTION_NOTSET);65 _("Must specify the direction as either PS_FFT_FORWARD or PS_FFT_REVERSE.")); 66 66 psFree(out); 67 67 return NULL; … … 71 71 if (plan == NULL) { 72 72 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 73 PS_ERRORTEXT_psVectorFFT_FFTW_PLAN_NULL);73 _("Could not create a valid FFT plan to perform the transform.")); 74 74 psFree(out); 75 75 return NULL; … … 142 142 PS_TYPE_NAME(typeStr,type); 143 143 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 144 PS_ERRORTEXT_psVectorFFT_TYPE_UNSUPPORTED,144 _("Specified psVector type, %s, is not supported."), 145 145 typeStr); 146 146 psFree(out); … … 201 201 PS_TYPE_NAME(typeStr,type); 202 202 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 203 PS_ERRORTEXT_psVectorFFT_TYPE_UNSUPPORTED,203 _("Specified psVector type, %s, is not supported."), 204 204 typeStr); 205 205 psFree(out); … … 233 233 PS_TYPE_NAME(typeStrImag,imag->type.type); 234 234 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 235 PS_ERRORTEXT_psVectorFFT_REAL_IMAG_TYPE_MISMATCH,235 _("Real psVector type, %s, and imaginary psVector type, %s, must be the same."), 236 236 typeStrReal,typeStrImag); 237 237 psFree(out); … … 267 267 PS_TYPE_NAME(typeStr,type); 268 268 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 269 PS_ERRORTEXT_psVectorFFT_NONREAL_NOTSUPPORTED,269 _("Input psVector type, %s, is required to be either psF32 or psF64."), 270 270 typeStr); 271 271 psFree(out); … … 327 327 PS_TYPE_NAME(typeStr,type); 328 328 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 329 PS_ERRORTEXT_psVectorFFT_NONCOMPLEX_NOTSUPPORTED,329 _("Input psVector type, %s, is required to be either psC32 or psC64."), 330 330 typeStr); 331 331 psFree(out); … … 407 407 PS_TYPE_NAME(typeStr,type); 408 408 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 409 PS_ERRORTEXT_psVectorFFT_NONCOMPLEX_NOTSUPPORTED,409 _("Input psVector type, %s, is required to be either psC32 or psC64."), 410 410 typeStr); 411 411 psFree(out);
Note:
See TracChangeset
for help on using the changeset viewer.
