Return number of criteria in function filter.
l=length(z)
When applied to an imat_filt object, the LENGTH function returns the number of criteria in the filter.
>> z=imat_filt('functiontype','=','frequency response');
>> z=z & {'responsenode','>',100}
z =
(FunctionType == 'Frequency Response Function') & (ResponseNode > 100)
>> length(z)
ans =
2
>>