view test/@Dork/display.m @ 11216:5036b0ff9597

configure.ac: Properly m4 quote AS_HELP_STRING.
author Rik <octave@nomad.inbox5.com>
date Tue, 09 Nov 2010 12:03:21 -0800
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