User`s guide

R2013b
4-4
flip function, a faster and more memory efficient alternative to
flipdim for flipping arrays and vectors
The flip function provides a faster and more memory efficient alternative to flipdim for
flipping arrays and vectors.
Partial name matching in inputParser
The inputParser now includes the PartialMatching property, which allows partial
matching of parameter names. This property is true by default. For more information,
see the inputParser reference page.
Compatibility Considerations
Parsing schemes requiring exact parameter name matching should set the inputParser
PartialMatching property to false.
Additional validateattributes options for checking array values
The validateattributes function now checks the following additional attributes of
numeric or logical input arrays.
Attribute Description
'decreasing' Each column element is less than the
previous element and no element is NaN.
'increasing' Each column element is greater than the
previous element and no element is NaN.
'nondecreasing' Each column element is greater than
or equal to the previous element and no
element is NaN.
'nonincreasing' Each column element is less than or equal
to the previous element and no element is
NaN.
For more information, see the validateattributes reference page.