Trait au::plots::Plotter[][src]

pub trait Plotter<T> {
    fn eval_point(&self, x: T) -> Complex<T>;
}

Determine how the transfer function is evaluated in plots.

Required methods

fn eval_point(&self, x: T) -> Complex<T>[src]

Evaluate the transfer function at the given value.

Arguments

  • x - value at which the function is evaluated
Loading content...

Implementors

impl<T: Float> Plotter<T> for Tf<T>[src]

fn eval_point(&self, s: T) -> Complex<T>[src]

Evaluate the transfer function at the given value.

Arguments

  • s - angular frequency at which the function is evaluated

impl<T: Float> Plotter<T> for Tfz<T>[src]

fn eval_point(&self, theta: T) -> Complex<T>[src]

Evaluate the transfer function at the given value.

Arguments

  • theta - angle at which the function is evaluated. Evaluation occurs at G(e^(i*theta)).
Loading content...