User`s guide
R2013a
5-22
Functionality What Happens
When You
Use This
Functionality
Use This Instead Compatibility Considerations
Noninteger valued
size inputs for zeros,
ones, eye, Inf, NaN,
true, false, rand, randi,
randn, and cell
Warns Integer valued size inputs Replace all instances
of noninteger valued
size inputs with integer
valued size inputs for
zeros, ones, eye, Inf,
NaN, true, false, rand,
randi, randn, and cell.
You can use floor for this
conversion.
cholinc(X,'inf') Errors None Remove all instances of
cholinc(X,'inf') from
your code.
All other syntaxes
of cholinc except
cholinc(X,'inf')
Errors ichol Replace these instances of
cholinc with ichol.
luinc Errors ilu Replace all instances of
luinc with ilu.
sparse(A)
sparse(i,j,s,...)
where A and s are of
type char.
Errors sparse(double(A))
sparse(i,j,double(s),...)
Convert all char inputs
to double before calling
sparse.
RandnAlg property of
RandStream class
Errors NormalTransform property
of RandStream class
Replace all existing
instances of RandnAlg with
NormalTransform.
setDefaultStream
method of RandStream
class
Errors setGlobalStream method
of RandStream class
Replace all existing
instances of
RandStream.setDefaultStream
with
RandStream.setGlobalStream.