demianmnave / CML

The Configurable Math Library
https://github.com/demianmnave/CML
Boost Software License 1.0
83 stars 15 forks source link

Implement matrix row and column views #1

Open demianmnave opened 7 years ago

demianmnave commented 7 years ago

From CML1 created by demianmnave : demianmnave/CML1#3

Row and column views should be derived from readable_vector or writable_vector, depending upon the access requirements of the source matrix. The views need not be high performance except in specific circumstances; e.g. a row_view of a row-major matrix should be fast, but a col_view may not be due to stride.