numerictype
Determine whether input is numerictype object
tf = isnumerictype(T)
example
tf = isnumerictype(T) returns 1 (true) if T is a numerictype object. Otherwise, it returns 0 (false).
T
1
true
0
false
collapse all
Create a variable and determine whether it is a numerictype object.
T = numerictype; tf = isnumerictype(T)
tf = logical 1
q = quantizer; tf = isnumerictype(q)
tf = logical 0
Input array.
isfi | isfimath | isfipref | isquantizer | numerictype
isfi
isfimath
isfipref
isquantizer
You have a modified version of this example. Do you want to open this example with your edits?