Create an fcn object.
f=fcn
f=fcn(m,n,p,...)
f=fcn(m,n,p,...,'Attr',value,...)
FCN is a subclass of IMAT_FN that was designed for use with Vibrata. It accesses all of the properties and methods of IMAT_FN. It also has some additional properties. These are described here.
The FCN constructor operates the same way as the IMAT_FN constructor.
To see the methods available for FCN, type 'methods(fcn)'.
FCNs are stored in a file with the .fcn extension. It is a MATLAB .mat file with contents specific to FCN. Use fcn/load to read FCNs from a .fcn file. Use fcn/save to save FCNs to a .fcn file.
>> f = fcn(3,4,2);
>> f = fcn(3,'FunctionType','Frequency Response Function');
Load and save examples.
>> f = load(fcn);
>> f = load(fcn,'file.fcn');
>> save(f);
>> save(f,'file.fcn');