Main Content

isfimath

Determine whether variable is fimath object

Description

example

tf = isfimath(F) returns 1 (true) if F is a fimath object. Otherwise, it returns 0 (false).

Examples

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)
tf = logical
   0

Input Arguments

collapse all

Input array.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

HDL Code Generation
Generate VHDL, Verilog and SystemVerilog code for FPGA and ASIC designs using HDL Coder™.

Version History

Introduced before R2006a