필터 지우기
필터 지우기

how to choose a certain color for a string?

조회 수: 35 (최근 30일)
jojototo
jojototo 2016년 4월 6일
편집: per isakson 2016년 6월 8일
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

답변 (2개)

Image Analyst
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
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.
jojototo
jojototo 2016년 6월 8일
thank you so much,I WILL TRY IT

댓글을 달려면 로그인하십시오.


Walter Roberson
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.
If the goal is to write to the command window rather than to save to a file, then see File Exchange
  댓글 수: 4
jojototo
jojototo 2016년 6월 5일
I mean a word document, sorry for my late reply,
per isakson
per isakson 2016년 6월 8일
편집: per isakson 2016년 6월 8일

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by