Struct glucose::DMatrix[][src]

pub struct DMatrix<T> {
    pub data: Vec<Vec<T>>,
    pub size: (usize, usize),
}

Fields

data: Vec<Vec<T>>size: (usize, usize)

Implementations

impl<T> DMatrix<T>[src]

pub fn new(data: Vec<Vec<T>>) -> Self[src]

impl<T: ToString> DMatrix<T>[src]

impl<T: Default + Copy> DMatrix<T>[src]

pub fn default_with_size(size: (usize, usize)) -> Self[src]

Trait Implementations

impl<T: Scalar> Add<DMatrix<T>> for DMatrix<T>[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: Scalar> AddAssign<DMatrix<T>> for DMatrix<T>[src]

impl<T: Clone> Clone for DMatrix<T>[src]

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

impl<T: Default> Default for DMatrix<T>[src]

impl<T: Display + Copy> Display for DMatrix<T>[src]

impl<T: Scalar> Div<T> for DMatrix<T>[src]

type Output = Self

The resulting type after applying the / operator.

impl<T: Scalar> DivAssign<T> for DMatrix<T>[src]

impl<T: FromStr + Default> From<&'_ str> for DMatrix<T>[src]

impl<T: Default + Copy, const M: usize, const N: usize> From<[[T; M]; N]> for DMatrix<T>[src]

impl<T: Default + Copy> From<DMatrix<T>> for DVector<T>[src]

impl<T: Default + Copy> From<DVector<T>> for DMatrix<T>[src]

impl<T: FromStr + Default> From<String> for DMatrix<T>[src]

impl<T: Scalar> Mul<DMatrix<T>> for DMatrix<T>[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Scalar> Mul<DVector<T>> for DMatrix<T>[src]

type Output = DVector<T>

The resulting type after applying the * operator.

impl<T: Scalar> Mul<T> for DMatrix<T>[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Scalar> MulAssign<DMatrix<T>> for DMatrix<T>[src]

impl<T: Scalar> MulAssign<T> for DMatrix<T>[src]

impl<T: Scalar> Sub<DMatrix<T>> for DMatrix<T>[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Scalar> SubAssign<DMatrix<T>> for DMatrix<T>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for DMatrix<T> where
    T: 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> Configure 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.