[221] | 1 | /***************************************************************************
|
---|
| 2 | * blitz/tvecglobs.h TinyVector global functions
|
---|
| 3 | *
|
---|
| 4 | * $Id: tvecglobs.h,v 1.1.1.1 1999-04-09 17:59:01 ansari Exp $
|
---|
| 5 | *
|
---|
| 6 | * This program is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the GNU General Public License
|
---|
| 8 | * as published by the Free Software Foundation; either version 2
|
---|
| 9 | * of the License, or (at your option) any later version.
|
---|
| 10 | *
|
---|
| 11 | * This program is distributed in the hope that it will be useful,
|
---|
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | * GNU General Public License for more details.
|
---|
| 15 | *
|
---|
| 16 | * Suggestions: blitz-suggest@cybervision.com
|
---|
| 17 | * Bugs: blitz-bugs@cybervision.com
|
---|
| 18 | *
|
---|
| 19 | * For more information, please see the Blitz++ Home Page:
|
---|
| 20 | * http://seurat.uwaterloo.ca/blitz/
|
---|
| 21 | *
|
---|
| 22 | ***************************************************************************
|
---|
| 23 | * $Log: not supported by cvs2svn $
|
---|
| 24 | * Revision 1.2 1998/03/14 00:04:47 tveldhui
|
---|
| 25 | * 0.2-alpha-05
|
---|
| 26 | *
|
---|
| 27 | * Revision 1.1 1997/07/16 14:51:20 tveldhui
|
---|
| 28 | * Update: Alpha release 0.2 (Arrays)
|
---|
| 29 | *
|
---|
| 30 | */
|
---|
| 31 |
|
---|
| 32 | #ifndef BZ_TVECGLOBS_H
|
---|
| 33 | #define BZ_TVECGLOBS_H
|
---|
| 34 |
|
---|
| 35 | #ifndef BZ_META_METAPROG_H
|
---|
| 36 | #include <blitz/meta/metaprog.h>
|
---|
| 37 | #endif
|
---|
| 38 |
|
---|
| 39 | #ifndef BZ_NUMTRAIT_H
|
---|
| 40 | #include <blitz/numtrait.h>
|
---|
| 41 | #endif
|
---|
| 42 |
|
---|
| 43 | #include <blitz/tvcross.h> // Cross products
|
---|
| 44 | #include <blitz/meta/dot.h>
|
---|
| 45 | #include <blitz/meta/product.h>
|
---|
| 46 | #include <blitz/meta/sum.h>
|
---|
| 47 |
|
---|
| 48 | BZ_NAMESPACE(blitz)
|
---|
| 49 |
|
---|
| 50 | template<class T_numtype1, class T_numtype2, int N_length>
|
---|
| 51 | inline BZ_PROMOTE(T_numtype1, T_numtype2)
|
---|
| 52 | dot(const TinyVector<T_numtype1, N_length>& a,
|
---|
| 53 | const TinyVector<T_numtype2, N_length>& b)
|
---|
| 54 | {
|
---|
| 55 | return _bz_meta_vectorDot<N_length, 0>::f(a,b);
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | template<class T_expr1, class T_numtype2, int N_length>
|
---|
| 59 | inline BZ_PROMOTE(_bz_typename T_expr1::T_numtype, T_numtype2)
|
---|
| 60 | dot(_bz_VecExpr<T_expr1> a, const TinyVector<T_numtype2, N_length>& b)
|
---|
| 61 | {
|
---|
| 62 | return _bz_meta_vectorDot<N_length, 0>::f_value_ref(a,b);
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | template<class T_numtype1, class T_expr2, int N_length>
|
---|
| 66 | inline BZ_PROMOTE(T_numtype1, _bz_typename T_expr2::T_numtype)
|
---|
| 67 | dot(const TinyVector<T_numtype1, N_length>& a, _bz_VecExpr<T_expr2> b)
|
---|
| 68 | {
|
---|
| 69 | return _bz_meta_vectorDot<N_length, 0>::f_ref_value(a,b);
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | template<class T_numtype1, int N_length>
|
---|
| 73 | inline BZ_SUMTYPE(T_numtype1)
|
---|
| 74 | product(const TinyVector<T_numtype1, N_length>& a)
|
---|
| 75 | {
|
---|
| 76 | return _bz_meta_vectorProduct<N_length, 0>::f(a);
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | template<class T_numtype, int N_length>
|
---|
| 80 | inline T_numtype
|
---|
| 81 | sum(const TinyVector<T_numtype, N_length>& a)
|
---|
| 82 | {
|
---|
| 83 | return _bz_meta_vectorSum<N_length, 0>::f(a);
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | BZ_NAMESPACE_END
|
---|
| 87 |
|
---|
| 88 | #endif // BZ_TVECGLOBS_H
|
---|
| 89 |
|
---|