Struct au::transfer_function::matrix::TfMatrix[][src]

pub struct TfMatrix<T> { /* fields omitted */ }

Matrix of transfer functions

Implementations

impl<T: Clone> TfMatrix<T>[src]

#[must_use]pub fn den(&self) -> Poly<T>[src]

Retrive the characteristic polynomial of the system.

impl<T: Float + MulAdd<Output = T>> TfMatrix<T>[src]

#[must_use]pub fn eval(&self, s: &[Complex<T>]) -> Vec<Complex<T>>[src]

Evaluate the matrix transfers function.

Arguments

  • s - Array at which the Matrix of transfer functions is evaluated.

Trait Implementations

impl<T: Debug> Debug for TfMatrix<T>[src]

impl<T> Display for TfMatrix<T> where
    T: Display + One + PartialEq + PartialOrd + Signed + Zero
[src]

Implementation of transfer function matrix printing

impl<T: Time> From<SsGen<f32, T>> for TfMatrix<f32>[src]

fn from(ss: SsGen<f32, T>) -> Self[src]

Convert a state-space representation into a matrix of transfer functions

Arguments

ss - state space linear system

impl<T: Time> From<SsGen<f64, T>> for TfMatrix<f64>[src]

fn from(ss: SsGen<f64, T>) -> Self[src]

Convert a state-space representation into a matrix of transfer functions

Arguments

ss - state space linear system

impl<T> Index<[usize; 2]> for TfMatrix<T>[src]

Implement read only indexing of the numerator of a transfer function matrix.

Panics

Panics for out of bounds access.

type Output = Poly<T>

The returned type after indexing.

impl<T> IndexMut<[usize; 2]> for TfMatrix<T>[src]

Implement mutable indexing of the numerator of a transfer function matrix returning its coefficients.

Panics

Panics for out of bounds access.

Auto Trait Implementations

impl<T> RefUnwindSafe for TfMatrix<T> where
    T: RefUnwindSafe

impl<T> Send for TfMatrix<T> where
    T: Send

impl<T> Sync for TfMatrix<T> where
    T: Sync

impl<T> Unpin for TfMatrix<T> where
    T: Unpin

impl<T> UnwindSafe for TfMatrix<T> where
    T: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,