pub fn vstack<T>(matrices: &[&CsrMatrix<T>]) -> Result<CsrMatrix<T>, FerroError>where T: Clone + Add<Output = T> + 'static,
Vertically concatenate CSR matrices.
All matrices must have the same number of columns.