Main Content

isfipref

Determine whether input is fipref object

Description

example

tf = isfipref(P) returns 1 (true) if P is a fipref object. Otherwise, it returns 0 (false).

Examples

collapse all

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

P = fipref;
tf = isfipref(P)
tf = logical
   1

F = fimath;
tf = isfipref(F)
tf = logical
   0

Input Arguments

collapse all

Input array.

Version History

Introduced in R2008a