pub struct AdjacencySpectralEmbeddingResult {
pub eigenvalues: Vec<f64>,
pub embedding: Vec<Vec<f64>>,
}Expand description
Result of adjacency spectral embedding.
Fields§
§eigenvalues: Vec<f64>Eigenvalues (or singular values) 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 AdjacencySpectralEmbeddingResult
impl Clone for AdjacencySpectralEmbeddingResult
Source§fn clone(&self) -> AdjacencySpectralEmbeddingResult
fn clone(&self) -> AdjacencySpectralEmbeddingResult
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 AdjacencySpectralEmbeddingResult
impl RefUnwindSafe for AdjacencySpectralEmbeddingResult
impl Send for AdjacencySpectralEmbeddingResult
impl Sync for AdjacencySpectralEmbeddingResult
impl Unpin for AdjacencySpectralEmbeddingResult
impl UnsafeUnpin for AdjacencySpectralEmbeddingResult
impl UnwindSafe for AdjacencySpectralEmbeddingResult
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