Uses of Class
com.oregondsp.signalProcessing.filter.iir.Polynomial

Packages that use Polynomial
com.oregondsp.signalProcessing.filter.iir   
 

Uses of Polynomial in com.oregondsp.signalProcessing.filter.iir
 

Methods in com.oregondsp.signalProcessing.filter.iir that return Polynomial
 Polynomial Rational.denominator()
          Returns a copy of the denominator polynomial.
 Polynomial Polynomial.derivative()
          Computes the derivative of a polynomial.
 Polynomial Polynomial.minus(double c)
          Returns a new Polynomial containing the difference between this polynomial and a constant.
 Polynomial Polynomial.minus(Polynomial B)
          Subtracts a polynomial from this polynomial.
 Polynomial Rational.numerator()
          Returns a copy of the numerator polynomial.
 Polynomial Polynomial.over(double c)
          Divides this polynomial by a constant and returns the result of division in a new Polynomial object.
 Polynomial Polynomial.plus(double c)
          Returns a new Polynomial object containing the sum polynomial of this and a constant.
 Polynomial Polynomial.plus(Polynomial B)
          Returns a new Polynomial object containing the sum of this and the argument polynomial.
 Polynomial Polynomial.times(double c)
          Computes the product of a constant and this polynomial.
 Polynomial Polynomial.times(Polynomial B)
          Computes the product of this polynomial with another polynomial.
 

Methods in com.oregondsp.signalProcessing.filter.iir with parameters of type Polynomial
 Polynomial Polynomial.minus(Polynomial B)
          Subtracts a polynomial from this polynomial.
 void Polynomial.minusEquals(Polynomial B)
          Subtracts a polynomial from this polynomial.
 Rational Polynomial.over(Polynomial B)
          Divides this polynomial by another polynomial.
 Polynomial Polynomial.plus(Polynomial B)
          Returns a new Polynomial object containing the sum of this and the argument polynomial.
 void Polynomial.plusEquals(Polynomial B)
          Adds a polynomial to this polynomial.
 Polynomial Polynomial.times(Polynomial B)
          Computes the product of this polynomial with another polynomial.
 void Rational.timesEquals(Polynomial P)
          Multiplies (in-place) a rational function by a polynomial.
 void Polynomial.timesEquals(Polynomial B)
          Multiplies this by a Polynomial factor.
 

Constructors in com.oregondsp.signalProcessing.filter.iir with parameters of type Polynomial
Allpass(Polynomial A)
          Instantiates a new allpass filter object from a Polynomial representing the allpass denominator.
Polynomial(Polynomial B)
          Instantiates (copies) a new polynomial from an existing Polynomial instance.
Rational(Polynomial N, Polynomial D)
          Instantiates a new rational function, given Polynomial objects for the numerator and denominator.