Add determineOptimalPulse function

This commit is contained in:
kradchen
2023-06-09 17:55:40 +08:00
parent 2bb12bf078
commit 5e003c7348
3 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef __DETERMINEOPTIMALPULSE_H__
#define __DETERMINEOPTIMALPULSE_H__
#include "Matrix.h"
namespace Recon {
Aurora::Matrix determineOptimalPulse(double timeInterval,
size_t expectedAScanLength);
}
#endif // __DETERMINEOPTIMALPULSE_H__