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