Changeset 4540 for trunk/psLib/src/fft
- Timestamp:
- Jul 12, 2005, 9:12:01 AM (21 years ago)
- Location:
- trunk/psLib/src/fft
- Files:
-
- 1 added
- 3 edited
-
Makefile.am (modified) (1 diff)
-
fft.i (added)
-
psImageFFT.h (modified) (3 diffs)
-
psVectorFFT.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fft/Makefile.am
r4446 r4540 1 #Makefile for dataManipfunctions of psLib1 #Makefile for fft functions of psLib 2 2 # 3 INCLUDES = \ 4 -I$(top_srcdir)/src/astro \ 5 -I$(top_srcdir)/src/db \ 6 -I$(top_srcdir)/src/fft \ 7 -I$(top_srcdir)/src/fits \ 8 -I$(top_srcdir)/src/imageops \ 9 -I$(top_srcdir)/src/math \ 10 -I$(top_srcdir)/src/mathtypes \ 11 -I$(top_srcdir)/src/sys \ 12 -I$(top_srcdir)/src/types \ 13 -I$(top_srcdir)/src/xml \ 14 $(all_includes) 3 noinst_LTLIBRARIES = libpslibfft.la 15 4 16 noinst_LTLIBRARIES = libpslibdataManip.la 5 libpslibfft_la_SOURCES = \ 6 psImageFFT.c \ 7 psVectorFFT.c 17 8 18 libpslibdataManip_la_SOURCES = psUnaryOp.c psBinaryOp.c psStats.c \ 19 psFunctions.c psMatrix.c psVectorFFT.c psMinimize.c psRandom.c 20 21 BUILT_SOURCES = psDataManipErrors.h 22 EXTRA_DIST = psDataManipErrors.dat psDataManipErrors.h dataManip.i 23 24 psDataManipErrors.h: psDataManipErrors.dat 25 $(top_srcdir)/src/psParseErrorCodes --data=$? $@ 9 EXTRA_DIST = fft.i 26 10 27 11 pslibincludedir = $(includedir) 28 12 pslibinclude_HEADERS = \ 29 psConstants.h \30 psStats.h \31 psFunctions.h \32 psMatrix.h \33 psBinaryOp.h \34 psUnaryOp.h \35 13 psVectorFFT.h \ 36 psMinimize.h \ 37 psRandom.h 14 psImageFFT.h 38 15 -
trunk/psLib/src/fft/psImageFFT.h
r4316 r4540 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-0 6-18 03:13:02$9 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-07-12 19:12:01 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 33 33 psImage* psImageFFT( 34 34 psImage* out, ///< a psImage to recycle. If NULL, a new psImage is made. 35 const psImage* image, ///< the psImage to apply transform to35 const psImage* image, ///< the psImage to apply transform to 36 36 psFFTFlags direction ///< the direction of the transform 37 37 ); … … 79 79 */ 80 80 psImage* psImagePowerSpectrum( 81 psImage* out, ///< a psImage to recycle. If NULL, a new psImage is made.82 const psImage* in ///< the psImage to power spectrum of81 psImage* out, ///< a psImage to recycle. If NULL, a new psImage is made. 82 const psImage* in ///< the psImage to power spectrum of 83 83 ); 84 84 -
trunk/psLib/src/fft/psVectorFFT.c
r3970 r4540 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.3 2$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-0 5-19 02:09:39$7 * @version $Revision: 1.33 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-07-12 19:12:01 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 22 22 #include "psLogMsg.h" 23 23 24 #include "ps DataManipErrors.h"24 #include "psErrorText.h" 25 25 26 26 #define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE
Note:
See TracChangeset
for help on using the changeset viewer.
