Is it possible to print color text in the command window?

 채택된 답변

madhan ravi
madhan ravi 2018년 10월 17일
편집: madhan ravi 2018년 10월 17일

0 개 추천

댓글 수: 8

If it works make sure to accept the answer
A direct link: FEX: cprintf
Thanks Jan :)
i have matlab in my mobile and this function doesn't work in it why ):
It works at command window only. :)
Right, this uses technology that only applies to the command window, not to LiveScript and not to MATLAB Mobile.
for future reader
as stated, it's possible with cprintf
but it's painfully slow ... (vs fprintf)
the cprintf takes a lot of time , for example :
>>tic ; for k = 1:1e2, cprintf('_blue', '.') ; end ; fprintf('\n') ; toc
....................................................................................................
Elapsed time is 1.819822 seconds.
>> tic ; for k = 1:1e2, fprintf(2,'.') ; end ; fprintf('\n') ; toc
....................................................................................................
Elapsed time is 0.001130 seconds.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

태그

질문:

2018년 10월 17일

댓글:

2025년 1월 14일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by