How to display a message as flashing and in my desired color and font size?
Afficher commentaires plus anciens
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 commentaires
prasanth s
le 1 Fév 2023
to display in figure window, 'text' function will help
Sadiq Akbar
le 1 Fév 2023
prasanth s
le 1 Fév 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
le 1 Fév 2023
Réponse acceptée
Plus de réponses (1)
John D'Errico
le 1 Fév 2023
Modifié(e) : John D'Errico
le 1 Fév 2023
1 vote
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 commentaires
Sadiq Akbar
le 1 Fév 2023
Walter Roberson
le 1 Fév 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
le 1 Fév 2023
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects 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!