Skip to main content

RealLabels

Trait RealLabels 

Source
pub trait RealLabels {
    // Required method
    fn into_vector(self) -> DVector<f64>;
}
Expand description

Represents continuous, real-valued label data

Required Methods§

Source

fn into_vector(self) -> DVector<f64>

Processes the labels into a dense vector

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl RealLabels for &Vec<f64>

Source§

impl RealLabels for &[f64]

Source§

impl RealLabels for Vec<f64>

Implementors§