User`s guide
Language and Programming
3-7
'Item_' 'Item__1' 'Price_Unit' 'x1stOrder' 'Contact'
details function displays details about arrays
For more information, see details.
Changes to passing empty object to isprop
Calls to isprop with empty objects now return an empty logical array instead of false.
Compatibility Considerations
Change code that relies on isprop retuning false for empty objects.
Behavior change of fullfile function output
In R2012b and earlier, the fullfile function returns a full file specification that includes
repeated file separators and relative path symbols if the input file parts include them.
For example, repeated file separators include \\ and \\\. Relative path symbols include
the dot (.) and double-dot (..) notation.
As of R2013a, fullfile collapses inner repeated file separators and relative directories
indicated by the dot and double-dot symbols, and does not display those symbols in the
output full file specification. fullfile maintains repeated file separators only if they
appear at the beginning of the full file specification. fullfile maintains dot and double-
dot symbols only if they appear at either end of the full file specification.
For example, the commands,
f = fullfile('C:\foo\folder1', '..\folder2')
g = fullfile('C:\foo\folder1', '\\\folder3\\')
h = fullfile('\\folder4\.')
return:
f =
C:\foo\folder2
g =
C:\foo\folder1\folder3\
h =