comparison libinterp/octave-value/ov-flt-cx-mat.h @ 31138:b3ca7f891750

maint: use "m_" prefix for member variables in class octave_base_matrix. * ov-base-int.cc, ov-base-mat.cc, ov-base-mat.h, ov-base.h, ov-bool-mat.cc, ov-bool-mat.h, ov-cell.cc, ov-cell.h, ov-ch-mat.cc, ov-ch-mat.h, ov-cx-mat.cc, ov-cx-mat.h, ov-flt-cx-mat.cc, ov-flt-cx-mat.h, ov-flt-re-mat.cc, ov-flt-re-mat.h, ov-intx.h, ov-re-mat.cc, ov-re-mat.h, ov-str-mat.cc, ov-str-mat.h: use "m_" prefix for member variables in class octave_base_matrix.
author Rik <rik@octave.org>
date Sun, 10 Jul 2022 18:26:24 -0700
parents 796f54d4ddbf
children 597f3ee61a48
comparison
equal deleted inserted replaced
31137:6308ce73bdca 31138:b3ca7f891750
120 120
121 ComplexMatrix complex_matrix_value (bool = false) const; 121 ComplexMatrix complex_matrix_value (bool = false) const;
122 122
123 FloatComplexMatrix float_complex_matrix_value (bool = false) const; 123 FloatComplexMatrix float_complex_matrix_value (bool = false) const;
124 124
125 ComplexNDArray complex_array_value (bool = false) const { return matrix; } 125 ComplexNDArray complex_array_value (bool = false) const { return m_matrix; }
126 126
127 FloatComplexNDArray float_complex_array_value (bool = false) const; 127 FloatComplexNDArray float_complex_array_value (bool = false) const;
128 128
129 boolNDArray bool_array_value (bool warn = false) const; 129 boolNDArray bool_array_value (bool warn = false) const;
130 130
139 139
140 octave_value diag (octave_idx_type k = 0) const; 140 octave_value diag (octave_idx_type k = 0) const;
141 141
142 octave_value diag (octave_idx_type m, octave_idx_type n) const; 142 octave_value diag (octave_idx_type m, octave_idx_type n) const;
143 143
144 void increment (void) { matrix += FloatComplex (1.0); } 144 void increment (void) { m_matrix += FloatComplex (1.0); }
145 145
146 void decrement (void) { matrix -= FloatComplex (1.0); } 146 void decrement (void) { m_matrix -= FloatComplex (1.0); }
147 147
148 void changesign (void) { matrix.changesign (); } 148 void changesign (void) { m_matrix.changesign (); }
149 149
150 bool save_ascii (std::ostream& os); 150 bool save_ascii (std::ostream& os);
151 151
152 bool load_ascii (std::istream& is); 152 bool load_ascii (std::istream& is);
153 153