User`s guide

Language and Programming
4-9
Functionality What Happens
When You Use This
Functionality?
Use This Instead Compatibility
Considerations
and time aligned
with the first
dimension
the first dimension
or a time series
object with 3-D or
higher dimensional
data and time
aligned with the last
dimension
code and assessing
the impact of
this change, see
“Changes to time
alignment for time
series objects” on
page 4-6.
cat(0,A,B) Errors cat(1,A,B) In previous releases,
the cat function
silently changed
dim=0 to dim=1.
Now, cat returns an
error when dim=0.
Replace all instances
of cat(0,A,B) to
cat(1,A,B).
cat(z,A,B), where
z is a complex
number
Errors cat(real(z),A,B) In previous releases,
the cat function
silently used the
real part of dim.
Now, cat returns an
error when dim is
complex. Replace
all instances of
cat(z,A,B) to
cat(real(z),A,B).
mexIsGlobal in the
C/C++ and Fortran
MEX API Library
Still Runs mxIsFromGlobalWS
in the C/C++ Matrix
Library and Fortran
Matrix Library
Replace all
instances of
mexIsGlobal with
mxIsFromGlobalWS
in MEX-files.