11 lines
276 B
C
11 lines
276 B
C
|
|
#ifndef __DETERMINEOPTIMALPULSE_H__
|
||
|
|
#define __DETERMINEOPTIMALPULSE_H__
|
||
|
|
|
||
|
|
#include "Matrix.h"
|
||
|
|
namespace Recon {
|
||
|
|
Aurora::Matrix determineOptimalPulse(double timeInterval,
|
||
|
|
size_t expectedAScanLength);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // __DETERMINEOPTIMALPULSE_H__
|