ProteoWizard
MatrixTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: MatrixTest.cpp 1539 2009-11-19 20:12:28Z khoff $
3 //
4 //
5 // Original author: Kate Hoff <katherine.hoff@proteowizard.org>
6 //
7 // Copyright 2009 Center for Applied Molecular Medicine
8 // University of Southern California, Los Angeles, CA
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 ///
24 /// MatrixTest.cpp
25 ///
26 
27 #include "Matrix.hpp"
29 #include <limits>
30 
31 using namespace pwiz;
32 using namespace eharmony;
33 using namespace pwiz::util;
34 
36 
37 void testMatrix()
38 {
39  // initialize a Matrix
40  Matrix m(2,4);
41 
42  // insert some stuff
43  m.insert(3.141, 0,0);
44  m.insert(2.718, 1,3);
45 
46  // access some stuff
47  unit_assert_equal(m.access(0,0), 3.141, epsilon);
48  unit_assert_equal(m.access(1,3), 2.718, epsilon);
49 
50 }
51 
52 int main()
53 {
54  testMatrix();
55  return 0;
56 
57 }
58