Function that multiplies a vector to a matrix. This header file includes the C++ wrapper for operations between vectors and matrices. Much of the routines are taken from the GSLwrap project. The oblective is to use special features of C++ such as operator overloading to enable a Matlab-like environment for development. The core GSLwrap libraries are freely available from http://sourceforge.net/projects/gslwrap/files/0.2/shrinkwrap/gslwrap-0.2.tar.gz/download Additional information on GSLwrap is available from http://gslwrap.sourceforge.net/ We include the files with this distribution as some additions have been made to the files from GSLwrap for additional functionality.
Overloads the * operator. Returns y = m v, where m is a matrix and v is a vector. Dimensions must be compatible. |