Beispiel #1
0
 public void GetSpectrum(float[] spectrumarray, int numvalues, int channeloffset, Dsp.FFTWindow windowtype)
 {
     GetSpectrum(this.DangerousGetHandle(), spectrumarray, numvalues, channeloffset, windowtype);
 }
Beispiel #2
0
 private static extern Error.Code GetSpectrum(IntPtr system, [MarshalAs(UnmanagedType.LPArray)] float[] spectrumarray, int numvalues, int channeloffset, Dsp.FFTWindow windowtype);
Beispiel #3
0
 public float[] GetSpectrum(int numvalues, int channeloffset, Dsp.FFTWindow windowtype)
 {
     float[] SpectrumArray = new float[numvalues];
     this.GetSpectrum(SpectrumArray, numvalues, channeloffset, windowtype);
     return(SpectrumArray);
 }