Mercurial > hg > octave-lyh
diff liboctave/fCColVector.cc @ 10314:07ebe522dac2
untabify liboctave C++ sources
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:23:32 -0500 |
parents | 4c0cdbe0acca |
children | 12884915a8e4 |
line wrap: on
line diff
--- a/liboctave/fCColVector.cc +++ b/liboctave/fCColVector.cc @@ -42,10 +42,10 @@ { F77_RET_T F77_FUNC (cgemv, CGEMV) (F77_CONST_CHAR_ARG_DECL, - const octave_idx_type&, const octave_idx_type&, const FloatComplex&, - const FloatComplex*, const octave_idx_type&, const FloatComplex*, - const octave_idx_type&, const FloatComplex&, FloatComplex*, const octave_idx_type& - F77_CHAR_ARG_LEN_DECL); + const octave_idx_type&, const octave_idx_type&, const FloatComplex&, + const FloatComplex*, const octave_idx_type&, const FloatComplex*, + const octave_idx_type&, const FloatComplex&, FloatComplex*, const octave_idx_type& + F77_CHAR_ARG_LEN_DECL); } // FloatComplex Column Vector class @@ -90,7 +90,7 @@ make_unique (); for (octave_idx_type i = 0; i < a_len; i++) - xelem (r+i) = a.elem (i); + xelem (r+i) = a.elem (i); } return *this; @@ -112,7 +112,7 @@ make_unique (); for (octave_idx_type i = 0; i < a_len; i++) - xelem (r+i) = a.elem (i); + xelem (r+i) = a.elem (i); } return *this; @@ -128,7 +128,7 @@ make_unique (); for (octave_idx_type i = 0; i < len; i++) - xelem (i) = val; + xelem (i) = val; } return *this; @@ -144,7 +144,7 @@ make_unique (); for (octave_idx_type i = 0; i < len; i++) - xelem (i) = val; + xelem (i) = val; } @@ -169,7 +169,7 @@ make_unique (); for (octave_idx_type i = r1; i <= r2; i++) - xelem (i) = val; + xelem (i) = val; } return *this; @@ -193,7 +193,7 @@ make_unique (); for (octave_idx_type i = r1; i <= r2; i++) - xelem (i) = val; + xelem (i) = val; } return *this; @@ -466,8 +466,8 @@ for (octave_idx_type i = 1; i < len; i++) if (std::abs (elem (i)) < absres) { - res = elem (i); - absres = std::abs (res); + res = elem (i); + absres = std::abs (res); } return res; @@ -486,8 +486,8 @@ for (octave_idx_type i = 1; i < len; i++) if (std::abs (elem (i)) > absres) { - res = elem (i); - absres = std::abs (res); + res = elem (i); + absres = std::abs (res); } return res;