pub struct FND { /* private fields */ }
Expand description
Representation of an n-dimensional function
Implementations§
Source§impl FND
impl FND
Sourcepub fn derive(&self, var: char, order: usize) -> Self
pub fn derive(&self, var: char, order: usize) -> Self
Computes the nth-derivative wrt a variable
use ruut_functions::{fnd,FND};
let vars = ['f', 'z'];
assert_eq!(fnd!("f^2+z", &vars).derive('f', 1), fnd!("2f", &vars));
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FND
impl RefUnwindSafe for FND
impl Send for FND
impl Sync for FND
impl Unpin for FND
impl UnwindSafe for FND
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more