[−][src]Module easy_ml::matrices::slices
Ways to transform and access matrices
At the moment slicing is not very usable and can only be used to downsize matrices with retain and retain_mut. In the future it will be available for iterating through matrices and indexing into matrices to get values.
Structs
| ColumnSlice2DBuilder | A builder object to create a slice. This exists to make forgetting to specify rows and columns a compilation error rather than a runtime one. |
| EmptySlice2DBuilder | A builder object to create a slice. This exists to make forgetting to specify rows and columns a compilation error rather than a runtime one. |
| RowSlice2DBuilder | A builder object to create a slice. This exists to make forgetting to specify rows and columns a compilation error rather than a runtime one. |
| Slice2D | A kind of slice that can be taken on a matrix, over its rows and columns. |
Enums
| Slice | A slice defines across one dimension what values are accepted, it can act like a filter. Slices can also be constructed via boolean logic operations in the same way as in predicate logic expressions. |
Functions
| new | Constructs a builder object to create a 2d slice |