Files
UR/src/common/estimatePulseLength.h

17 lines
295 B
C
Raw Normal View History

#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