comparison liboctave/MArrayN.h @ 10312:cbc402e64d83

untabify liboctave header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:14:48 -0500
parents 9a16a61ed43d
children 12884915a8e4
comparison
equal deleted inserted replaced
10311:a217e1d74353 10312:cbc402e64d83
72 72
73 MArrayN<T> reshape (const dim_vector& new_dims) const 73 MArrayN<T> reshape (const dim_vector& new_dims) const
74 { return Array<T>::reshape (new_dims); } 74 { return Array<T>::reshape (new_dims); }
75 75
76 MArrayN<T> permute (const Array<octave_idx_type>& vec, 76 MArrayN<T> permute (const Array<octave_idx_type>& vec,
77 bool inv = false) const 77 bool inv = false) const
78 { return Array<T>::permute (vec, inv); } 78 { return Array<T>::permute (vec, inv); }
79 79
80 MArrayN<T> ipermute (const Array<octave_idx_type>& vec) const 80 MArrayN<T> ipermute (const Array<octave_idx_type>& vec) const
81 { return Array<T>::ipermute (vec); } 81 { return Array<T>::ipermute (vec); }
82 82