Filter löschen
Filter löschen

color in output in matlab

104 Ansichten (letzte 30 Tage)
ali hassan
ali hassan am 5 Feb. 2022
Kommentiert: Arif Hoq am 7 Feb. 2022
let say if i want my output for certain condition in red or green clor,can it be done so?
a=[1 2 3 4 4];
b=[1 2 3 4 5];
if any(abs(a-b))==1
sprintf('ali')
end
what should i add so that it will print 'ali' in red?

Akzeptierte Antwort

Arif Hoq
Arif Hoq am 5 Feb. 2022
It might be helpful
a=[1 2 3 4 4];
b=[1 2 3 4 5];
if any(abs(a-b))==1
fprintf(2,'\n ali \n')
end
1 for default, 2 for red

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by