Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Vector.h
1 /*
2 Copyright (c) 2006, Michael Kazhdan and Matthew Bolitho
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without modification,
6 are permitted provided that the following conditions are met:
7 
8 Redistributions of source code must retain the above copyright notice, this list of
9 conditions and the following disclaimer. Redistributions in binary form must reproduce
10 the above copyright notice, this list of conditions and the following disclaimer
11 in the documentation and/or other materials provided with the distribution.
12 
13 Neither the name of the Johns Hopkins University nor the names of its contributors
14 may be used to endorse or promote products derived from this software without specific
15 prior written permission.
16 
17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
18 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES
19 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
20 SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
22 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
26 DAMAGE.
27 */
28 
29 #ifndef __VECTOR_HPP
30 #define __VECTOR_HPP
31 
32 
33 #define Assert assert
34 #include <assert.h>
35 #include "Array.h"
36 
37 template< class T >
39 {
40 public:
41  PoissonVector( void );
42  PoissonVector( const PoissonVector<T>& V );
43  PoissonVector( size_t N );
44  PoissonVector( size_t N, ConstPointer( T ) pV );
45  ~PoissonVector( void );
46 
47  const T& operator () (size_t i) const;
48  T& operator () (size_t i);
49  const T& operator [] (size_t i) const;
50  T& operator [] (size_t i);
51 
52  void SetZero();
53 
54  size_t Dimensions() const;
55  void Resize( size_t N );
56 
57  PoissonVector operator * (const T& A) const;
58  PoissonVector operator / (const T& A) const;
59  PoissonVector operator - (const PoissonVector& V) const;
60  PoissonVector operator + (const PoissonVector& V) const;
61 
62  PoissonVector& operator *= ( const T& A );
63  PoissonVector& operator /= ( const T& A );
64  PoissonVector& operator += ( const PoissonVector& V );
65  PoissonVector& operator -= ( const PoissonVector& V );
66 
67  PoissonVector& Add( const PoissonVector* V , int count );
68  PoissonVector& AddScaled( const PoissonVector& V , const T& scale );
69  PoissonVector& SubtractScaled( const PoissonVector& V , const T& scale );
70  static void Add( const PoissonVector& V1 , const T& scale1 , const PoissonVector& V2 , const T& scale2 , PoissonVector& Out );
71  static void Add( const PoissonVector& V1 , const T& scale1 , const PoissonVector& V2 , PoissonVector& Out );
72 
73  PoissonVector operator - () const;
74 
75  PoissonVector& operator = (const PoissonVector& V);
76 
77  T Dot( const PoissonVector& V ) const;
78 
79  T Length() const;
80 
81  T Norm( size_t Ln ) const;
82  void Normalize();
83 
84  bool write( FILE* fp ) const;
85  bool write( const char* fileName ) const;
86  bool read( FILE* fp );
87  bool read( const char* fileName );
88 
89  Pointer( T ) m_pV;
90 protected:
91  size_t m_N;
92 
93 };
94 
95 
96 #include "Vector.inl"
97 
98 #endif