Skip to content
Snippets Groups Projects
display.m 396 B
Newer Older
function display(self)
%DISPLAY Display a queue table object
%   display(queue)

% Copyright (c) 2004 Matthew Krauski (mkrauski@uci.edu), CNLM, UC Irvine

%isLoose = strcmp(get(0,'FormatSpacing'),'loose');
isLoose = 0;

if(length(inputname(1)) ~= 0)
    if isLoose, disp(' '), end
    disp( sprintf('%s =', inputname(1)) );
end

if isLoose, disp(' '), end

disp(struct(self));