pub struct LaplacianSpectralEmbeddingResult {
pub eigenvalues: Vec<f64>,
pub embedding: Vec<Vec<f64>>,
}Expand description
Result of Laplacian spectral embedding.
Fields§
§eigenvalues: Vec<f64>Eigenvalues in the order selected by which.
embedding: Vec<Vec<f64>>Embedding matrix: embedding[v] is the no-dimensional embedding
of vertex v. Each inner vector has length no.
Trait Implementations§
Source§impl Clone for LaplacianSpectralEmbeddingResult
impl Clone for LaplacianSpectralEmbeddingResult
Source§fn clone(&self) -> LaplacianSpectralEmbeddingResult
fn clone(&self) -> LaplacianSpectralEmbeddingResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LaplacianSpectralEmbeddingResult
impl RefUnwindSafe for LaplacianSpectralEmbeddingResult
impl Send for LaplacianSpectralEmbeddingResult
impl Sync for LaplacianSpectralEmbeddingResult
impl Unpin for LaplacianSpectralEmbeddingResult
impl UnsafeUnpin for LaplacianSpectralEmbeddingResult
impl UnwindSafe for LaplacianSpectralEmbeddingResult
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