1% Display a message in a color (followed by a newline).
2%
3% colordisp(msg,color)
4%
5% The same as disp but in color.
6%
7% See also
8%   colormsg
9
10function colordisp(msg,color)
11colormsg (msg,color)
12fprintf(1,'\n');
13
14% Copyright (C) 2004 Alexander Barth <a.barth@ulg.ac.be>
15%
16% This program is free software; you can redistribute it and/or modify it under
17% the terms of the GNU General Public License as published by the Free Software
18% Foundation; either version 2 of the License, or (at your option) any later
19% version.
20%
21% This program is distributed in the hope that it will be useful, but WITHOUT
22% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
24% details.
25%
26% You should have received a copy of the GNU General Public License along with
27% this program; if not, see <http://www.gnu.org/licenses/>.
28