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

Mapping Transpose Feature #8

Open
wants to merge 37 commits into
base: default
Choose a base branch
from

Conversation

kylekrol
Copy link
Owner

Added the mapping transpose operation.

Previously, there was only a transpose operation taking in a constant stream. This mean you couldn't assign to the result of a transpose operation even if it makes total sense for that to happen. Now you can do something like this:

lin::Matrix2x2d A;
lin::transpose(A) = { 0.0, 1.0, 2.0, 3.0 };

which has the exact same result as doing:

lin::Matrix2x2d A;
A = { 0.0, 2.0, 1.0, 3.0 };

kylekrol and others added 30 commits April 19, 2020 22:25
Added Identity Matrix Generator
Remove project brief from docs
Adding Explicitly Defaulted Default Constructors
* Added Gaussian Std Normal Rands

* Update Comments

* Add caching and std math`

* Update include/lin/generators/randoms.hpp

Co-authored-by: kkrol27 <[email protected]>

Co-authored-by: kkrol27 <[email protected]>
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

Successfully merging this pull request may close these issues.

4 participants