display

PURPOSE ^

display for the response_function class.

SYNOPSIS ^

function []=display(rf)

DESCRIPTION ^

  display for the response_function class.

  []=display(rf)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 %
0002 %  display for the response_function class.
0003 %
0004 %  []=display(rf)
0005 %
0006 function []=display(rf)
0007 
0008 if ~isa(rf,'response_function')
0009     error('Object ''%s'' is a ''%s'' class object, not ''%s''.',...
0010         inputname(1),class(rf),'response_function');
0011 end
0012 
0013 %  display the object
0014 
0015 disp(sprintf('\n'));
0016 for i=1:numel(rf)
0017     disp(sprintf('class ''%s'' object ''%s%s'' = \n',...
0018         class(rf),inputname(1),string_dim(rf,i)));
0019     disp(sprintf('    descriptor: ''%s'''  ,rf(i).descriptor));
0020     disp(sprintf('         respl: %s'      ,string_vec(rf(i).respl)));
0021     disp(sprintf('         probl: %s'      ,string_vec(rf(i).probl)));
0022     disp(sprintf('          rell: %s'      ,string_vec(rf(i).rell)));
0023     disp(sprintf('         grell: %s\n'    ,string_vec(rf(i).grell)));
0024 end
0025 
0026 end

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003