how to choose a certain color for a string?
30 次查看(过去 30 天)
显示 更早的评论
I have a text document which contains the word 'hello' how could I write this word in blue,or generally how to set a color for a string in matlab
0 个评论
回答(2 个)
Image Analyst
2016-4-6
Use the color option to place your string onto your axes:
text(x, y, yourString, 'Color', 'r');
Color can also be a 3 number array for [r,g,b] with values in the range 0-1 to get any color you want. You can also change font size and font name with appropriate options,
5 个评论
Image Analyst
2016-6-5
When I said "View/Macros/Record Macro..." that is doing that from Microsoft Word. Just look at the tool ribbon in Word.
Walter Roberson
2016-4-6
If you need to set the color inside the text document then you cannot do that: plain text does not have a color.
Changing the color of text can be done in some human-readable formats such as RTF; for example (thanks to pindari.com)
{\rtf1\ansi\deff0
{\colortbl;\red0\green0\blue0;\red255\green0\blue0;}
This line is the default color\line
\cf2
This line is red\line
\cf1
This line is the default color
}
You might be able to set color in Excel files, under some conditions.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 ActiveX 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!