How to display a message as flashing and in my desired color and font size?
Mostra commenti meno recenti
I want to display the following message in flashing and in my desired color and font size:
" Yes, the error is the same "
I am coding like this but it gives error:
disp('Yes, the error is the same','r','fontsize',5)
4 Commenti
prasanth s
il 1 Feb 2023
to display in figure window, 'text' function will help
Sadiq Akbar
il 1 Feb 2023
prasanth s
il 1 Feb 2023
figure;
t=text(0.1,0.5,'text here','fontname','Courier','fontsize',30,'color','red');
for i=1:10
if mod(i,2)==0
t.Visible=1;
else
t.Visible=0;
end
pause(0.5)
end
Sadiq Akbar
il 1 Feb 2023
Risposta accettata
Più risposte (1)
John D'Errico
il 1 Feb 2023
Modificato: John D'Errico
il 1 Feb 2023
1 voto
You can do that, but since disp is not written to accept those extra arguments, it might not work. Wanting code to do what you want is always a valid thing to try, but it rarely works.
You CAN use cprintf though, to do at least some of what you want.
3 Commenti
Sadiq Akbar
il 1 Feb 2023
Walter Roberson
il 1 Feb 2023
Does the display need to be to the command window, or could it be text drawn in a figure?
If it must be to the command window then are you Livescript?
Sadiq Akbar
il 1 Feb 2023
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!