]> git.tdb.fi Git - libs/math.git/commitdiff
Add row and column accessors to Matrix
authorMikko Rasa <tdb@tdb.fi>
Thu, 9 Nov 2017 10:45:59 +0000 (12:45 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sat, 11 Nov 2017 12:04:11 +0000 (14:04 +0200)
source/linal/matrix.h
source/linal/vector.h

index 1c831be6b11cf6f4181366017c739c9ba5e4fd30..daf9cb898e04393f2fc2d0f4d75b52d69bca4b94 100644 (file)
@@ -36,6 +36,9 @@ public:
        T &operator()(unsigned i, unsigned j) { return element(i, j); }
        const T &operator()(unsigned i, unsigned j) const { return element(i, j); }
 
+       Vector<T, M> column(unsigned i) const { return Vector<T, M>(data+M*i); }
+       Vector<T, N> row(unsigned i) const { return Vector<T, N>(data+i, M); }
+
        template<unsigned P, unsigned Q>
        Matrix<T, P, Q> select(const Vector<unsigned, P> &, const Vector<unsigned, Q> &) const;
 
index 152c26e66482e943e5837c5ddecc54fc9e7c2fde..9a9d02822aebe554627178803b4c6bd4c2621ddc 100644 (file)
@@ -78,6 +78,11 @@ public:
 
        Vector();
        Vector(const T *);
+
+       /** Constructs a vector from an array of interleaved values.  Intended for
+       use by Matrix row accessor. */
+       Vector(const T *, unsigned);
+
        Vector(T, T);
        Vector(T, T, T);
        Vector(T, T, T, T);
@@ -113,6 +118,13 @@ inline Vector<T, N>::Vector(const T *d)
                (*this)[i] = d[i];
 }
 
+template<typename T, unsigned N>
+inline Vector<T, N>::Vector(const T *d, unsigned stride)
+{
+       for(unsigned i=0; i<N; ++i)
+               (*this)[i] = d[i*stride];
+}
+
 /* The compiler won't instantiate these unless they are used.  Trying to use
 them on the wrong class results in an error. */
 template<typename T, unsigned N>