MET 6308 This directory contains the Fortran source code and a time series data file for Dr. O'Brien's time series course MET 6308. The source code files, located in the src directory, are an implementation of the fast fourier transform that can be compiled on most machines. To retrieve these files: ftp to coaps.fsu.edu username: anonymous password: "your email address" ftp> cd pub/met/src ftp> get Makefile ftp> get fft.doc ftp> mget *.f ftp> quit The Makefile can be used to automatically compile all the subroutines into a single library that you can link with your own program. To perform this simply type: make library This will compile all the subroutines into a file called libfourt.a which should be added when you compile your fortran program: f77 myprog.f libfourt.a -o myprog There is a file fft.doc, which contains documentation on calling the FFT subroutines and their arguments. Please send email to Al Davis, davis@coaps.fsu.edu, if you have any problems retrieving these files.