Package DSP.filter

Examples of DSP.filter.Rational


   *
   * @return     Rational object containing the resulting transfer function representation.
   */
  protected void computeTransferFunction() {
   
    T = new Rational( 1.0 );
   
    for ( int i = 0;  i < sections.size();  i++ )
      T.timesEquals( sections.get(i) );
   
  }
View Full Code Here


   *
   * @return      Rational object containing the transfer function representation for the filter.
   */
  public Rational getTransferFunction() {
    if ( T == null ) computeTransferFunction();
    return new Rational( T );
  }
View Full Code Here

TOP

Related Classes of DSP.filter.Rational

Copyright © 2018 www.massapicom. 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.