pub struct LandmarkGraphResult {
pub adjacency_matrix: Array2<f64>,
pub landmark_indices: Vec<usize>,
pub landmarks: Array2<f64>,
}Expand description
Result of landmark graph construction
Fields§
§adjacency_matrix: Array2<f64>The constructed adjacency matrix
landmark_indices: Vec<usize>Indices of selected landmarks in original data
landmarks: Array2<f64>Landmark points
Implementations§
Trait Implementations§
Source§impl Clone for LandmarkGraphResult
impl Clone for LandmarkGraphResult
Source§fn clone(&self) -> LandmarkGraphResult
fn clone(&self) -> LandmarkGraphResult
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 LandmarkGraphResult
impl RefUnwindSafe for LandmarkGraphResult
impl Send for LandmarkGraphResult
impl Sync for LandmarkGraphResult
impl Unpin for LandmarkGraphResult
impl UnwindSafe for LandmarkGraphResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more