japaric-archived / linalg.rs

[INACTIVE]
Apache License 2.0
29 stars 1 forks source link

Also allow storing data in row-major order #22

Open japaric opened 9 years ago

japaric commented 9 years ago

This would allow interoperation with other libraries that store data in row-major order.

The row-major/column-major can be stored as a phantom type in the Mat/View types.

Without "default type parameters" the constructors would become very unergonomic. Also, what happens to the mat! macro?

This requires a serious amount of work, basically doubling the size of the code base.