isfloat
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
Return true if variable var is a single or double matrix.
res = isfloat(var)
var - a variable
res - a logical: true or false
isfloat returns a logical 1 if the argument is a single or double matrix and a logical 0 otherwise.
A = 3;
res = isfloat(A)
A = single(3);
res = isfloat(A)
1.0.0
initial version
Allan CORNET