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

Slicing w/o copying (Views) #185

Open
vkostyukov opened this issue May 22, 2014 · 0 comments
Open

Slicing w/o copying (Views) #185

vkostyukov opened this issue May 22, 2014 · 0 comments

Comments

@vkostyukov
Copy link
Owner

There are a couple of operations in matrix/vector interface that involves full copying - getRow/getColumn and slice operations sliceX. I should think of either making these operations fast of providing an alternative way doing the same task w/ coping. It usually called view. Like this:

Matrix {
  Vector getRowView();
  Vector getColumnView();
  Vector toRowVectorView();
  Vector toColumnVectorView();
  Matrix sliceView();
  Matrix sliceLeftView();
  Matrix sliceRightView();
  Matrix selectView();
}
@vkostyukov vkostyukov added this to the la4j-0.6.0 milestone May 22, 2014
@vkostyukov vkostyukov changed the title Slicing w/o copying Slicing w/o copying (Views) May 23, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant