pub type FloatMatrix = Matrix<f64>;
Aliased Type§
struct FloatMatrix { /* private fields */ }
Trait Implementations§
Source§impl SeriesOps for FloatMatrix
impl SeriesOps for FloatMatrix
Source§fn apply_axis<U, F>(&self, axis: Axis, f: F) -> Vec<U>
fn apply_axis<U, F>(&self, axis: Axis, f: F) -> Vec<U>
Generic helper: apply
f
to every column/row and collect its
result in a Vec
.