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