pub type BoolMatrix = Matrix<bool>;
Aliased Type§
struct BoolMatrix { /* private fields */ }
Trait Implementations§
Source§impl BoolOps for BoolMatrix
impl BoolOps for BoolMatrix
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
.