This is the Tiny Vector Matrix Expression Templates library found at http://tvmet.sourceforge.net. It is the fastest and most compact matrix lib out there (for < 10x10 matricies). I have done some minor tweaks to make it compile for mbed. For examples and hints on how to use, see: http://tvmet.sourceforge.net/usage.html

Dependents:   Eurobot_2012_Secondary

Committer:
madcowswe
Date:
Wed Mar 28 15:53:45 2012 +0000
Revision:
0:feb4117d16d8

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
madcowswe 0:feb4117d16d8 1 /*
madcowswe 0:feb4117d16d8 2 * Tiny Vector Matrix Library
madcowswe 0:feb4117d16d8 3 * Dense Vector Matrix Libary of Tiny size using Expression Templates
madcowswe 0:feb4117d16d8 4 *
madcowswe 0:feb4117d16d8 5 * Copyright (C) 2001 - 2007 Olaf Petzold <opetzold@users.sourceforge.net>
madcowswe 0:feb4117d16d8 6 *
madcowswe 0:feb4117d16d8 7 * This library is free software; you can redistribute it and/or
madcowswe 0:feb4117d16d8 8 * modify it under the terms of the GNU Lesser General Public
madcowswe 0:feb4117d16d8 9 * License as published by the Free Software Foundation; either
madcowswe 0:feb4117d16d8 10 * version 2.1 of the License, or (at your option) any later version.
madcowswe 0:feb4117d16d8 11 *
madcowswe 0:feb4117d16d8 12 * This library is distributed in the hope that it will be useful,
madcowswe 0:feb4117d16d8 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
madcowswe 0:feb4117d16d8 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
madcowswe 0:feb4117d16d8 15 * Lesser General Public License for more details.
madcowswe 0:feb4117d16d8 16 *
madcowswe 0:feb4117d16d8 17 * You should have received a copy of the GNU Lesser General Public
madcowswe 0:feb4117d16d8 18 * License along with this library; if not, write to the Free Software
madcowswe 0:feb4117d16d8 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
madcowswe 0:feb4117d16d8 20 *
madcowswe 0:feb4117d16d8 21 * $Id: Functional.h,v 1.11 2007-06-23 15:58:58 opetzold Exp $
madcowswe 0:feb4117d16d8 22 */
madcowswe 0:feb4117d16d8 23
madcowswe 0:feb4117d16d8 24 #ifndef TVMET_FUNCTIONAL_H
madcowswe 0:feb4117d16d8 25 #define TVMET_FUNCTIONAL_H
madcowswe 0:feb4117d16d8 26
madcowswe 0:feb4117d16d8 27 #include <tvmet/TypePromotion.h>
madcowswe 0:feb4117d16d8 28
madcowswe 0:feb4117d16d8 29 namespace tvmet {
madcowswe 0:feb4117d16d8 30
madcowswe 0:feb4117d16d8 31
madcowswe 0:feb4117d16d8 32 /**
madcowswe 0:feb4117d16d8 33 * \class Functional Functional.h "tvmet/Functional.h"
madcowswe 0:feb4117d16d8 34 * \brief Base class for all binary und unary functionals.
madcowswe 0:feb4117d16d8 35 *
madcowswe 0:feb4117d16d8 36 * All functional operators and functions have a static apply
madcowswe 0:feb4117d16d8 37 * member function for evaluating the expressions inside.
madcowswe 0:feb4117d16d8 38 */
madcowswe 0:feb4117d16d8 39 struct Functional { };
madcowswe 0:feb4117d16d8 40
madcowswe 0:feb4117d16d8 41
madcowswe 0:feb4117d16d8 42 /**
madcowswe 0:feb4117d16d8 43 * \class BinaryFunctional Functional.h "tvmet/Functional.h"
madcowswe 0:feb4117d16d8 44 * \brief Base class for all binary functions.
madcowswe 0:feb4117d16d8 45 * \note Used for collecting classes for doxygen.
madcowswe 0:feb4117d16d8 46 */
madcowswe 0:feb4117d16d8 47 struct BinaryFunctional : public Functional { };
madcowswe 0:feb4117d16d8 48
madcowswe 0:feb4117d16d8 49
madcowswe 0:feb4117d16d8 50 /**
madcowswe 0:feb4117d16d8 51 * \class UnaryFunctional Functional.h "tvmet/Functional.h"
madcowswe 0:feb4117d16d8 52 * \brief Base class for all unary functions.
madcowswe 0:feb4117d16d8 53 * \note Used for collecting classes for doxygen.
madcowswe 0:feb4117d16d8 54 */
madcowswe 0:feb4117d16d8 55 struct UnaryFunctional : public Functional { };
madcowswe 0:feb4117d16d8 56
madcowswe 0:feb4117d16d8 57
madcowswe 0:feb4117d16d8 58 /*
madcowswe 0:feb4117d16d8 59 * some macro magic need below
madcowswe 0:feb4117d16d8 60 */
madcowswe 0:feb4117d16d8 61
madcowswe 0:feb4117d16d8 62 /**
madcowswe 0:feb4117d16d8 63 * \def TVMET_STD_SCOPE(x)
madcowswe 0:feb4117d16d8 64 * \brief Simple macro to allow using macros for namespace std functions.
madcowswe 0:feb4117d16d8 65 */
madcowswe 0:feb4117d16d8 66 #define TVMET_STD_SCOPE(x) std::x
madcowswe 0:feb4117d16d8 67
madcowswe 0:feb4117d16d8 68
madcowswe 0:feb4117d16d8 69 /**
madcowswe 0:feb4117d16d8 70 * \def TVMET_GLOBAL_SCOPE(x)
madcowswe 0:feb4117d16d8 71 * \brief Simple macro to allow using macros for global namespace functions.
madcowswe 0:feb4117d16d8 72 */
madcowswe 0:feb4117d16d8 73 #define TVMET_GLOBAL_SCOPE(x) ::x
madcowswe 0:feb4117d16d8 74
madcowswe 0:feb4117d16d8 75
madcowswe 0:feb4117d16d8 76 } // namespace tvmet
madcowswe 0:feb4117d16d8 77
madcowswe 0:feb4117d16d8 78
madcowswe 0:feb4117d16d8 79 #include <tvmet/BinaryFunctionals.h>
madcowswe 0:feb4117d16d8 80 #include <tvmet/UnaryFunctionals.h>
madcowswe 0:feb4117d16d8 81
madcowswe 0:feb4117d16d8 82
madcowswe 0:feb4117d16d8 83 #endif // TVMET_FUNCTIONAL_H
madcowswe 0:feb4117d16d8 84
madcowswe 0:feb4117d16d8 85 // Local Variables:
madcowswe 0:feb4117d16d8 86 // mode:C++
madcowswe 0:feb4117d16d8 87 // tab-width:8
madcowswe 0:feb4117d16d8 88 // End: