Skip to main content

vstack

Function vstack 

Source
pub fn vstack<T>(matrices: &[&CsrMatrix<T>]) -> Result<CsrMatrix<T>, FerroError>
where T: Clone + Add<Output = T> + 'static,
Expand description

Vertically concatenate CSR matrices.

All matrices must have the same number of columns.