]> git.tdb.fi Git - libs/math.git/commitdiff
Clearer API for slicing and dicing vectors, and also matrices
authorMikko Rasa <tdb@tdb.fi>
Thu, 13 Nov 2014 21:18:47 +0000 (23:18 +0200)
committerMikko Rasa <tdb@tdb.fi>
Thu, 13 Nov 2014 21:18:47 +0000 (23:18 +0200)
source/linal/matrix.h
source/linal/vector.h

index f18eb2f4cfb52504214b84015688e46d0d7be121..929c48247e517aa47d837df1438c94465e25064a 100644 (file)
@@ -30,6 +30,9 @@ public:
        T &operator()(unsigned i, unsigned j) { return element(i, j); }
        const T &operator()(unsigned i, unsigned j) const { return element(i, j); }
 
+       template<unsigned P, unsigned Q>
+       Matrix<T, P, Q> block(unsigned, unsigned) const;
+
        Matrix &operator*=(T);
        Matrix &operator/=(T);
        Matrix &operator+=(const Matrix &);
@@ -81,6 +84,17 @@ inline Matrix<T, M, N> Matrix<T, M, N>::from_rows(const Vector<T, N> *v)
        return m;
 }
 
+template<typename T, unsigned M, unsigned N>
+template<unsigned P, unsigned Q>
+inline Matrix<T, P, Q> Matrix<T, M, N>::block(unsigned y, unsigned x) const
+{
+       Matrix<T, P, Q> r;
+       for(unsigned j=0; j<P; ++j)
+               for(unsigned i=0; i<Q; ++i)
+                       r(j, i) = element(y+j, x+i);
+       return r;
+}
+
 template<typename T, unsigned M, unsigned N>
 inline Matrix<T, M, N> &Matrix<T, M, N>::operator*=(T s)
 {
index 9ef46fde412f22804535065d6dd59c10b11963e2..6dfe6ca0167fb3e1d57e65217003e3d700f6a3b3 100644 (file)
@@ -81,10 +81,9 @@ public:
        Vector(T, T, T, T);
        template<typename U>
        Vector(const Vector<U, N> &);
-       template<typename U>
-       Vector(const Vector<U, N-1> &, U);
-       template<typename U>
-       explicit Vector(const Vector<U, N+1> &);
+
+       template<unsigned M>
+       Vector<T, M> slice(unsigned) const;
 
        Vector &operator*=(T);
        Vector &operator/=(T);
@@ -145,20 +144,44 @@ inline Vector<T, N>::Vector(const Vector<U, N> &v)
 }
 
 template<typename T, unsigned N>
-template<typename U>
-inline Vector<T, N>::Vector(const Vector<U, N-1> &v, U s)
+inline Vector<T, N+1> compose(const Vector<T, N> &v, T s)
 {
-       for(unsigned i=0; i<N-1; ++i)
-               (*this)[i] = v[i];
-       (*this)[N-1] = s;
+       Vector<T, N+1> r;
+       for(unsigned i=0; i<N; ++i)
+               r[i] = v[i];
+       r[N] = s;
+       return r;
 }
 
 template<typename T, unsigned N>
-template<typename U>
-inline Vector<T, N>::Vector(const Vector<U, N+1> &v)
+inline Vector<T, N+1> compose(T s, const Vector<T, N> &v)
 {
+       Vector<T, N+1> r;
        for(unsigned i=0; i<N; ++i)
-               (*this)[i] = v[i];
+               r[i] = v[i];
+       r[N] = s;
+       return r;
+}
+
+template<typename T, unsigned N, unsigned M>
+inline Vector<T, N+M> compose(const Vector<T, N> &v1, const Vector<T, M> &v2)
+{
+       Vector<T, N+M> r;
+       for(unsigned i=0; i<N; ++i)
+               r[i] = v1[i];
+       for(unsigned i=0; i<M; ++i)
+               r[N+i] = v2[i];
+       return r;
+}
+
+template<typename T, unsigned N>
+template<unsigned M>
+inline Vector<T, M> Vector<T, N>::slice(unsigned j) const
+{
+       Vector<T, M> r;
+       for(unsigned i=0; i<M; ++i)
+               r[i] = (*this)[j+i];
+       return r;
 }
 
 template<typename T, unsigned N>