Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upper/lower diagonal subsets #145

Open
ghost opened this issue Feb 2, 2017 · 0 comments
Open

Upper/lower diagonal subsets #145

ghost opened this issue Feb 2, 2017 · 0 comments

Comments

@ghost
Copy link

ghost commented Feb 2, 2017

I know there already exist DiagOffset, but how about these methods for Matrix?

fn upper_diag_inds(nrows: usize, ncols: usize) -> Vec<[usize; 2]> {
  (0..nrows)
    .enumerate()
    .flat_map(|(iter_ind, row_ind)| {
      (iter_ind..ncols).map(move |col_ind| {
        [row_ind, col_ind]
      })
    }).collect()
}

fn lower_diag_inds(nrows: usize, ncols: usize) -> Vec<[usize; 2]> {
  (0..nrows)
    .enumerate()
    .flat_map(|(iter_ind, row_ind)| {
      (0..iter_ind + 1).map(move |col_ind| {
        [row_ind, col_ind]
      })
    }).collect()
}

I think these would be useful for #144 also.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants