view test/@Dork/display.m @ 10658:c66a4657d764

spline.m: Ignore NaNs within input vectors.
author Ben Abbott <bpabbott@mac.com>
date Tue, 25 May 2010 18:14:25 -0400
parents f9ab19428cd8
children
line wrap: on
line source

function display( s )
%  Display the critical info for an amplifier

   gick = get(s,'gick');
   disp([inputname(1),'.gick = '])
   disp(' ');
   disp(gick);
   disp(' ');
   disp([inputname(1),'.gack = '])
   disp(' ');
   disp(s.gack);

end