Esempio n. 1
0
        public Spectrum(int freqs, int times, int sumTimes)
        {
            SpectrumMatrix = new FreqPoint[times][];

            for (var t = 0; t < times; t++)
            {
                SpectrumMatrix[t] = new FreqPoint[freqs];
            }

            timeFactor = sumTimes;
        }
Esempio n. 2
0
 public void SetPoint(int freq, int time, FreqPoint value)
 {
     SpectrumMatrix[time][freq] = value;
 }