display colored output in command window
Afficher commentaires plus anciens
Can the numbers be displayed in command window in some colors. I mean ... 1 should be displayed in red color and 2 should be displayed in blue color.
Regards, Siva
Edit [27 Mar 2012, 08:25 BST - OK] Erased email address.
Réponses (1)
Oleg Komarov
le 27 Mar 2012
Edit
An example with cprintf:
A = [5 6; 9 10];
cprintf('cyan' , '%3.0f' ,A(1));
cprintf('Magenta' , '%3.0f \n',A(3));
cprintf('blue' , '%3.0f' ,A(2));
cprintf('green' , '%3.0f \n',A(4));
3 commentaires
Sivakumaran Chandrasekaran
le 27 Mar 2012
Oleg Komarov
le 27 Mar 2012
It's a submission of the FEX. Follow the link.
Sivakumaran Chandrasekaran
le 28 Mar 2012
Modifié(e) : DGM
le 19 Juin 2024
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!