strf/rfio.h

11 lines
298 B
C
Raw Normal View History

2014-03-23 08:18:54 -06:00
struct spectrogram {
int nsub,nchan;
double *mjd;
double freq,samp_rate;
float *length;
float *z;
char nfd0[32];
};
2015-05-25 15:15:20 -06:00
struct spectrogram read_spectrogram(char *prefix,int isub,int nsub,double f0,double df0,int nbin,double foff);
2014-03-23 08:18:54 -06:00
void write_spectrogram(struct spectrogram s,char *prefix);