pub struct EigenCotangent<T: Scalar> {
pub values: Option<Tensor<T>>,
pub vectors: Option<Tensor<T>>,
}Expand description
Fields§
§values: Option<Tensor<T>>Cotangent for eigenvalues. Shape must match EigenResult::values.
vectors: Option<Tensor<T>>Cotangent for eigenvectors. Shape must match EigenResult::vectors.
Auto Trait Implementations§
impl<T> Freeze for EigenCotangent<T>
impl<T> !RefUnwindSafe for EigenCotangent<T>
impl<T> Send for EigenCotangent<T>
impl<T> Sync for EigenCotangent<T>
impl<T> Unpin for EigenCotangent<T>where
T: Unpin,
impl<T> !UnwindSafe for EigenCotangent<T>
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