Skip to content
This repository has been archived by the owner on Dec 9, 2018. It is now read-only.

Add hstack/vstack functions for concatenating matrices #65

Open
japaric opened this issue May 6, 2015 · 0 comments
Open

Add hstack/vstack functions for concatenating matrices #65

japaric opened this issue May 6, 2015 · 0 comments

Comments

@japaric
Copy link
Contributor

japaric commented May 6, 2015

fn hstack(_: &[SubMat<T>]) -> Mat<T>;
fn vstack(_: &[SubMat<T>]) -> Mat<T>;

X = hstack(&[A, B, C]);  // === Python's `X = [A, B, C]`
Y = vstack(&[A, B, C]);  // === Python's `X = [A; B; C]`
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant