Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 namespace
00033 cmtk
00034 {
00035
00038
00044 template<class T>
00045 Vector<T> operator+ ( const Vector<T>& p, const Vector<T>& delta )
00046 {
00047 assert ( p.Dim == delta.Dim );
00048
00049 T* Result = Memory::AllocateArray<T>( p.Dim );
00050 #pragma omp parallel for if (p.Dim>1e4)
00051 for ( size_t i=0; i<p.Dim; ++i )
00052 Result[i] = p.Elements[i] + delta.Elements[i];
00053
00054 return Vector<T>( p.Dim, Result );
00055 }
00056
00062 template<class T>
00063 inline Vector<T> operator-
00064 ( const Vector<T>& p, const Vector<T>& delta )
00065 {
00066 assert ( p.Dim == delta.Dim );
00067
00068 T* Result = Memory::AllocateArray<T>( p.Dim );
00069 #pragma omp parallel for if (p.Dim>1e4)
00070 for ( size_t i=0; i<p.Dim; ++i )
00071 Result[i] = p.Elements[i] - delta.Elements[i];
00072
00073 return Vector<T>( p.Dim, Result );
00074 }
00075
00082 template<class T>
00083 Vector<T> operator* ( const T c, const Vector<T>& p )
00084 {
00085 T* Result = Memory::AllocateArray<T>( p.Dim );
00086 #pragma omp parallel for if (p.Dim>1e4)
00087 for ( size_t i=0; i<p.Dim; ++i )
00088 Result[i] = c * p.Elements[i];
00089
00090 return Vector<T>( p.Dim, Result );
00091 }
00092
00097 template<class T>
00098 Vector<T> CoordMult ( const Vector<T>& p, const Vector<T>& q )
00099 {
00100 assert ( p.Dim == q.Dim );
00101
00102 T* Result = Memory::AllocateArray<T>( p.Dim );
00103 #pragma omp parallel for if (p.Dim>1e4)
00104 for ( size_t i=0; i<p.Dim; ++i )
00105 Result[i] = p.Elements[i] * q.Elements[i];
00106
00107 return Vector<T>( p.Dim, Result );
00108 }
00109
00115 template<class T>
00116 inline T operator* ( const Vector<T>& p, const Vector<T>& q )
00117 {
00118 assert ( p.Dim == q.Dim );
00119
00120 T Result = 0;
00121 #pragma omp parallel for if (p.Dim>1e4)
00122 for ( size_t i=0; i<p.Dim; ++i )
00123 Result += p.Elements[i] * q.Elements[i];
00124
00125 return Result;
00126 }
00127
00128 }