User`s guide
R2015a
1-10
or an array of meta.class instances, consider performing the qualification using two
separate Throws constraints.
Git Source Control Integration: View branch details and delete branches
When using the Git™ source control integration, you can view branch details and delete
branches in the Manage Branches dialog box. Use the Branch Browser to see which
files changed for a particular commit in the branch or to view the author, date, and
commit message.
For more information, see “Branch and Merge with Git”.
C Matrix Library: New functions
The new functions mxCreateUninitNumericMatrix and
mxCreateUninitNumericArray create numeric arrays without initializing
the data elements. If you want to initialize the data elements, use the functions
mxCreateNumericMatrix and mxCreateNumericArray.
To convert an mxArray to a C-style string in UTF-8 encoding, call the new
mxArrayToUTF8String function.
To determine if an mxArray contains scalar data, call the new mxIsScalar function.
Functionality being removed or changed
Functionality Result Use This Instead Compatibility Considerations
isglobal Errors none Refactor any code that uses
isglobal. Avoid conditions in
your code that check variable
scope. If you need to convert
your code quickly in the short
term, replace isglobal with
~isempty(whos('global','variable')).
However, you should refactor your
code to avoid conditional checks on
variable scope.