Examples of Fensterfunktion


Examples of horcher.maths2.Fensterfunktion

    this.signal2 = new Signal[Main.N_Kanale];
    this.kreuzleistungsspektrum = new Kreuzleistungsspektrum[Main.N_Kanale - 1];
    this.correlation = new Correlation[Main.N_Kanale - 1];
    this.correlation2 = new Correlation[Main.N_Kanale - 1];
    Graph<ComplexD> tmpG;
    Fensterfunktion hanning=new Fensterfunktion(Fensterfunktion.HANNING,signal[0].size());
    this.window.auto.graphen.add(new Graph<ComplexD>(hanning, "Hanning " ));
    for (int i = 0; i < Main.N_Kanale; i++) {
      this.signal[i].mul(hanning);
      this.spectrum[i] = this.signal[i].fft();
      this.spectrum[i].zBewerten();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.