00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #if !defined (octave_PermMatrix_h)
00024 #define octave_PermMatrix_h 1
00025
00026 #include "Array.h"
00027 #include "mx-defs.h"
00028
00029
00030
00031
00032 class OCTAVE_API PermMatrix : protected Array<octave_idx_type>
00033 {
00034
00035 public:
00036
00037 PermMatrix (void) : Array<octave_idx_type> (), _colp (false) { }
00038
00039 PermMatrix (octave_idx_type n);
00040
00041 PermMatrix (const Array<octave_idx_type>& p, bool colp = false,
00042 bool check = true);
00043
00044 PermMatrix (const PermMatrix& m)
00045 : Array<octave_idx_type> (m), _colp(m._colp) { }
00046
00047 PermMatrix (const idx_vector& idx, bool colp = false, octave_idx_type n = 0);
00048
00049 octave_idx_type dim1 (void) const
00050 { return Array<octave_idx_type>::length (); }
00051 octave_idx_type dim2 (void) const
00052 { return Array<octave_idx_type>::length (); }
00053
00054 octave_idx_type rows (void) const { return dim1 (); }
00055 octave_idx_type cols (void) const { return dim2 (); }
00056 octave_idx_type columns (void) const { return dim2 (); }
00057
00058 octave_idx_type perm_length (void) const
00059 { return Array<octave_idx_type>::length (); }
00060
00061 octave_idx_type length (void) const
00062 { return perm_length (); }
00063 octave_idx_type nelem (void) const { return dim1 () * dim2 (); }
00064 octave_idx_type numel (void) const { return nelem (); }
00065
00066 size_t byte_size (void) const { return perm_length () * sizeof (octave_idx_type); }
00067
00068 dim_vector dims (void) const { return dim_vector (dim1 (), dim2 ()); }
00069
00070 Array<octave_idx_type> pvec (void) const
00071 { return *this; }
00072
00073 octave_idx_type
00074 elem (octave_idx_type i, octave_idx_type j) const
00075 {
00076 return (_colp
00077 ? ((Array<octave_idx_type>::elem (j) == i) ? 1 : 0)
00078 : ((Array<octave_idx_type>::elem (i) == j) ? 1 : 0));
00079 }
00080
00081 octave_idx_type
00082 checkelem (octave_idx_type i, octave_idx_type j) const;
00083
00084 octave_idx_type
00085 operator () (octave_idx_type i, octave_idx_type j) const
00086 {
00087 #if defined (BOUNDS_CHECKING)
00088 return checkelem (i, j);
00089 #else
00090 return elem (i, j);
00091 #endif
00092 }
00093
00094
00095 PermMatrix transpose (void) const;
00096 PermMatrix inverse (void) const;
00097
00098
00099 octave_idx_type determinant (void) const;
00100
00101
00102 PermMatrix power (octave_idx_type n) const;
00103
00104 bool is_col_perm (void) const { return _colp; }
00105 bool is_row_perm (void) const { return !_colp; }
00106
00107 friend OCTAVE_API PermMatrix operator *(const PermMatrix& a, const PermMatrix& b);
00108
00109 const octave_idx_type *data (void) const
00110 { return Array<octave_idx_type>::data (); }
00111
00112 const octave_idx_type *fortran_vec (void) const
00113 { return Array<octave_idx_type>::fortran_vec (); }
00114
00115 octave_idx_type *fortran_vec (void)
00116 { return Array<octave_idx_type>::fortran_vec (); }
00117
00118 void print_info (std::ostream& os, const std::string& prefix) const
00119 { Array<octave_idx_type>::print_info (os, prefix); }
00120
00121 static PermMatrix eye (octave_idx_type n);
00122
00123 private:
00124 bool _colp;
00125 };
00126
00127
00128 PermMatrix
00129 OCTAVE_API
00130 operator *(const PermMatrix& a, const PermMatrix& b);
00131
00132 #endif