pub struct HrgDendrogram {
pub graph: Graph,
pub prob: Vec<f64>,
}Expand description
Result of converting an HrgTree to a dendrogram graph.
Fields§
§graph: GraphThe dendrogram as a directed graph. Vertices 0..n are leaves,
vertices n..2n-1 are internal nodes.
prob: Vec<f64>Connection probability per vertex. Leaves have f64::NAN.
Trait Implementations§
Source§impl Clone for HrgDendrogram
impl Clone for HrgDendrogram
Source§fn clone(&self) -> HrgDendrogram
fn clone(&self) -> HrgDendrogram
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 HrgDendrogram
impl !RefUnwindSafe for HrgDendrogram
impl Send for HrgDendrogram
impl !Sync for HrgDendrogram
impl Unpin for HrgDendrogram
impl UnsafeUnpin for HrgDendrogram
impl UnwindSafe for HrgDendrogram
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