pub struct ResidueMethods;Expand description
Residue computation methods
Implementations§
Source§impl ResidueMethods
impl ResidueMethods
Sourcepub fn simple_pole_residue(
numerator: &Expression,
denominator: &Expression,
variable: &Symbol,
pole: &Expression,
) -> Expression
pub fn simple_pole_residue( numerator: &Expression, denominator: &Expression, variable: &Symbol, pole: &Expression, ) -> Expression
Sourcepub fn higher_order_pole_residue(
numerator: &Expression,
denominator: &Expression,
variable: &Symbol,
pole: &Expression,
order: u32,
) -> Expression
pub fn higher_order_pole_residue( numerator: &Expression, denominator: &Expression, variable: &Symbol, pole: &Expression, order: u32, ) -> Expression
Auto Trait Implementations§
impl Freeze for ResidueMethods
impl RefUnwindSafe for ResidueMethods
impl Send for ResidueMethods
impl Sync for ResidueMethods
impl Unpin for ResidueMethods
impl UnwindSafe for ResidueMethods
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more