How to display a message as flashing and in my desired color and font size?
Show older comments
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 Comments
prasanth s
on 1 Feb 2023
to display in figure window, 'text' function will help
Sadiq Akbar
on 1 Feb 2023
prasanth s
on 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
on 1 Feb 2023
Accepted Answer
More Answers (1)
John D'Errico
on 1 Feb 2023
Edited: John D'Errico
on 1 Feb 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 Comments
Sadiq Akbar
on 1 Feb 2023
Walter Roberson
on 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
on 1 Feb 2023
Categories
Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!