comparison liboctave/array/Array.h @ 31550:c58f0f6ae207

maint: merge stable to default
author Rik <rik@octave.org>
date Fri, 25 Nov 2022 21:38:43 -0800
parents db8735ee84da ed7b17c7ddf3
children edd01ca92952
comparison
equal deleted inserted replaced
31547:212cc32100f5 31550:c58f0f6ae207
633 633
634 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc> 634 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc>
635 reshape (octave_idx_type nr, octave_idx_type nc) const 635 reshape (octave_idx_type nr, octave_idx_type nc) const
636 { return Array<T, Alloc> (*this, dim_vector (nr, nc)); } 636 { return Array<T, Alloc> (*this, dim_vector (nr, nc)); }
637 637
638 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc> 638 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc>
639 reshape (const dim_vector& new_dims) const 639 reshape (const dim_vector& new_dims) const
640 { return Array<T, Alloc> (*this, new_dims); } 640 { return Array<T, Alloc> (*this, new_dims); }
641 641
642 OCTARRAY_API Array<T, Alloc> 642 OCTARRAY_API Array<T, Alloc>
643 permute (const Array<octave_idx_type>& vec, bool inv = false) const; 643 permute (const Array<octave_idx_type>& vec, bool inv = false) const;