17 lines
295 B
C
17 lines
295 B
C
|
|
#ifndef ESTIMATE_PULSE_LENGTH_H
|
||
|
|
#define ESTIMATE_PULSE_LENGTH_H
|
||
|
|
|
||
|
|
#include "Matrix.h"
|
||
|
|
|
||
|
|
namespace Recon
|
||
|
|
{
|
||
|
|
struct CeEstimatePulseLength
|
||
|
|
{
|
||
|
|
Aurora::Matrix ce;
|
||
|
|
double ce_sf;
|
||
|
|
};
|
||
|
|
|
||
|
|
double estimatePulseLength(const CeEstimatePulseLength& aCe, double aSampleFreq);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|