示例#1
0
        public static HtSineResult HtSine(int startIdx, int endIdx, double[] real)
        {
            int outBegIdx    = default;
            int outNBElement = default;

            double[] outSine     = new double[endIdx - startIdx + 1];
            double[] outLeadSine = new double[endIdx - startIdx + 1];

            RetCode retCode = TACore.HtSine(startIdx, endIdx, real, ref outBegIdx, ref outNBElement, ref outSine, ref outLeadSine);

            return(new(retCode, outBegIdx, outNBElement, outSine, outLeadSine));
        }