help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Color console - is this possible in near future?


From: c.
Subject: Re: Color console - is this possible in near future?
Date: Fri, 9 Nov 2012 10:38:07 +0100

On 9 Nov 2012, at 10:00, Zbigniew Komarnicki wrote:

> 
> Try this:
> fprintf(1,'\033[31mThis is a test.\033[36m Here another color.
> \033[37;41;1m Now is background color and white bold.\033[0m\n');

The following works as you would expect in Octave:

fprintf(1, [char(27), ...
          '[31mThis is a test.', ...
           char(27), ...
          '[36m Here another color.', ...
           char(27), ...
          '[37;41;1m Now is background color and white bold.', ...
           char(27), ...
          '[0m\n']);

And it also works in Matlab if you need compatible code.

c.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]