EnergySpectrumAnalyer/src/DataCalcProcess/EnergyEfficiencyFit.h

15 lines
336 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef ENERGYEFFICIENCYFIT_H
#define ENERGYEFFICIENCYFIT_H
#include <armadillo>
namespace EnergyEfficiencyFit
{
// 拟合效率-能量曲线E 能量数据keVeps 效率数据(需>0拟合系数a0~a5
arma::vec SemiEmpiricalFit(const arma::vec& E, const arma::vec& eps, int order) ;
}
#endif // ENERGYEFFICIENCYFIT_H