Beispiel #1
0
        public Dictionary <String, List <Point> > GetPHAmplSpectre(int N = 1024, int PeriodsNum = 5)
        {
            var tempSets = new Dictionary <String, List <Point> >();

            if (PHPoints == null)
            {
                PHPoints = GetPolyharmonicPoints(N, PeriodsNum);
            }

            tempSets.Add("Polyharmonic Amplitude Spectre", SignalRestorer.GetAmplSpectre(PHPoints, N));

            return(tempSets);
        }
Beispiel #2
0
        public Dictionary <String, List <Point> > GetTSAmplSpectre(int N = 1024, int PeriodsNum = 5)
        {
            var tempSets = new Dictionary <String, List <Point> >();

            if (TSPoints == null)
            {
                TSPoints = GetTSPoints(N, PeriodsNum);
            }

            tempSets.Add("Test Signal Amplitude Spectre", SignalRestorer.GetAmplSpectre(TSPoints, N));

            return(tempSets);
        }