ProteoWizard
Matrix.hpp
Go to the documentation of this file.
1 //
2 // $Id: Matrix.hpp 2051 2010-06-15 18:39:13Z chambm $
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 #ifndef _MATRIX_HPP_
24 #define _MATRIX_HPP_
25 
26 #include <iostream>
27 #include <vector>
28 #include <map>
29 #include <algorithm>
30 
31 using namespace std;
32 
33 namespace pwiz{
34 namespace eharmony{
35 
37 {
39  bool operator()(pair<double, pair<int, int> > a, pair<double, pair<int, int> > b) { return a.first < b.first;}
40 
41 };
42 
43 struct Matrix
44 {
45  Matrix(){}
46  Matrix(const int& r, const int& c);
47  Matrix(const Matrix& m) : _rows(m._rows), _columns(m._columns){}
48 
49  // TODO : Add exception for out of range
50  void insert(const double& value, const int& rowCoordinate, const int& columnCoordinate);
51  double access(const int& rowCoordinate, const int& columnCoordinate);
52  pair<int, int> getMinValLocation(){ return min_element(_data.begin(), _data.end(), KeyLessThan())->second; } // if more than one location for the minimum element, returns the first one (lexically w.r.t. row/column indices
53 
54  vector<vector<double> > _rows;
55  vector<vector<double> > _columns;
56 
57  multimap<double, pair<int,int> > _data;
58 
59 
60  ostream& write(ostream& os);
61 
62 };
63 
64  //ostream& operator<<(ostream& os, const Matrix& m);
65 
66 } // eharmony
67 } // pwiz
68 
69 #endif