Package DSP.filter.fir.equiripple

Examples of DSP.filter.fir.equiripple.CenteredHilbertTransform.filter()


   * @param realSignal   double[] containing the original real signal.
   */
  public ComplexAnalyticSignal( double[] realSignal ) {
    realPart = realSignal.clone();
    CenteredHilbertTransform transformer = new CenteredHilbertTransform( 50, 0.03, 0.97 );
    double[] tmp = transformer.filter( realPart );
    Sequence.zeroShift( tmp, -50 );
    imagPart = new double[ realPart.length ];
    System.arraycopy( tmp, 0, imagPart, 0, realPart.length );
  }
 
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.