display

PURPOSE ^

display for the continuous_design class.

SYNOPSIS ^

function []=display(cdv)

DESCRIPTION ^

  display for the continuous_design class.

  []=display(cdv)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

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