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: Nicholas Jankowski
Subject: Re: Color console - is this possible in near future?
Date: Fri, 9 Nov 2012 08:17:30 -0500

On Fri, Nov 9, 2012 at 4:44 AM, Zbigniew Komarnicki <address@hidden> wrote:
On Friday 09 of November 2012 10:38:07 you wrote:
> 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.

Thank you for your quick answer.

Regards
_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave


interesting.... running the MinGW 3.6.2 octave-forge package I get:

octave:1> 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']);

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

all in black and white. is that just a function of the console or default config that this version uses? running it from the Windows cmd shell or Windows Powershell does the same.

reply via email to

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