comparison liboctave/dDiagMatrix.h @ 8811:20dfb885f877

int -> octave_idx fixes
author John W. Eaton <jwe@octave.org>
date Wed, 18 Feb 2009 23:34:03 -0500
parents e3c9102431a9
children c690e3772583
comparison
equal deleted inserted replaced
8810:c9e1db15035b 8811:20dfb885f877
91 91
92 ColumnVector column (octave_idx_type i) const; 92 ColumnVector column (octave_idx_type i) const;
93 ColumnVector column (char *s) const; 93 ColumnVector column (char *s) const;
94 94
95 DiagMatrix inverse (void) const; 95 DiagMatrix inverse (void) const;
96 DiagMatrix inverse (int& info) const; 96 DiagMatrix inverse (octave_idx_type& info) const;
97 97
98 // other operations 98 // other operations
99 99
100 ColumnVector diag (octave_idx_type k = 0) const 100 ColumnVector diag (octave_idx_type k = 0) const
101 { return MDiagArray2<double>::diag (k); } 101 { return MDiagArray2<double>::diag (k); }