Main Content

isfi

Determine whether variable is fi object

Description

example

tf = isfi(a) returns 1 (true) if a is a fi object. Otherwise, it returns 0 (false).

Examples

collapse all

Create a variable and determine whether it is a fi object.

a = fi(pi);
tf = isfi(a)
tf = logical
   1

b = single([1 2 3 4]);
tf = isfi(b)
tf = logical
   0

Input Arguments

collapse all

Input array.

Extended Capabilities

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

Version History

Introduced before R2006a