matrix
matrix copied to clipboard
Should matrices support column-major order?
Currently, matrices are row-major order. Supporting column-major order would require internal modifications to provide efficient access patterns.
- What are the use cases for supporting column-major order as an option?
- API implications?
- Would probably require modifying the API from being variadic to being an
object-based interface.
- Would probably require modifying the API from being variadic to being an
- How different from creating a
Matrixand then just taking the transpose?