comparison NEWS @ 19160:995df67fc912

Flip arrays - ND support for fliplr and flipud, and replace flipdim with flip. * fliplr.m, flipud.m: add support for N-dimensional arrays by making use of flip(). Added new tests for ND arrays and defaults. * flipdim.m: deprecate in favour of new function flip() which has exactly the same syntax and is part of Matlab since R2014a. * flip.m: new function copied from flipdim. Added tests for ND arrays and defaults. * matrix.txi: replace flipdim DOCSTRINg with flip. * rot90.m, rotdim.m, del2.m: replace flipdim() with flip() * NEWS: note deprecation of flip(), new function flipdim(), and ND support for flipud() and fliplr().
author Carnë Draug <carandraug+dev@gmail.com>
date Sun, 21 Sep 2014 18:49:08 +0100
parents c43223245085
children 8b2a919d24bc
comparison
equal deleted inserted replaced
19159:62f833acf183 19160:995df67fc912
66 66
67 ** Other new functions added in 4.2: 67 ** Other new functions added in 4.2:
68 68
69 bandwidth 69 bandwidth
70 dir_in_loadpath 70 dir_in_loadpath
71 flip
71 hgload 72 hgload
72 hgsave 73 hgsave
73 ichol 74 ichol
74 ilu 75 ilu
75 isbanded 76 isbanded
100 Function | Replacement 101 Function | Replacement
101 -------------------|------------------ 102 -------------------|------------------
102 bicubic | interp2 103 bicubic | interp2
103 find_dir_in_path | dir_in_loadpath 104 find_dir_in_path | dir_in_loadpath
104 finite | isfinite 105 finite | isfinite
106 flipdim | flip
105 fmod | rem 107 fmod | rem
106 fnmatch | glob or regexp 108 fnmatch | glob or regexp
107 nfields | numfields 109 nfields | numfields
108 syl | sylvester 110 syl | sylvester
109 usage | print_usage 111 usage | print_usage
132 134
133 The internal class <Octave_map> was deprecated in Octave 3.8 and has 135 The internal class <Octave_map> was deprecated in Octave 3.8 and has
134 been removed from Octave 4.2. Replacement classes are 136 been removed from Octave 4.2. Replacement classes are
135 <octave_map> (struct array) or <octave_scalar_map> for a single structure. 137 <octave_map> (struct array) or <octave_scalar_map> for a single structure.
136 138
139 ** The following functions have now support for N-dimensional arrays:
140
141 fliplr
142 flipud
143
144
137 Summary of important user-visible changes for version 4.0: 145 Summary of important user-visible changes for version 4.0:
138 --------------------------------------------------------- 146 ---------------------------------------------------------
139 147
140 ** For compatibility with Matlab, the "backtrace" warning option is now 148 ** For compatibility with Matlab, the "backtrace" warning option is now
141 enabled by default. 149 enabled by default.