fix:新增GetFileFittingData算法

This commit is contained in:
orgin 2023-07-12 11:03:09 +08:00
parent 0b286a9af2
commit 1604e35d32

View File

@ -33,4 +33,12 @@ public class EnergySpectrumHandler {
*/
public static native List<Double> GetFileFittingPara(List<Double> centroid_channel, List<Double> g_energy);
/**
* 根据channel 获取 Energy
* @param centroid_channel
* @param fittingPara
* @return
*/
public static native List<Double> GetFileFittingData(List<Double> centroid_channel, List<Double> fittingPara);
}