フィルターのクリア

how do I insert a string var in title command using LaTeX/TeX

9 ビュー (過去 30 日間)
Jan
Jan 2014 年 6 月 18 日
編集済み: Walter Roberson 2016 年 4 月 14 日
Greetings,
I've been looking for a solution for the following challenge:
figure(1)
title ('\color{cyan}\WBC \color{red}RBC \color{blue}PLT)
displays "WBC RBC PLT" above the plot in fig(1) in the selected colors.
Now I'd like to add the number of events for the 3 subsets in the figure(2) title, but have not been able to figure out how to replace the 'literal' strings WBC, RBC, and PLT with string variables as in
wbcstr = num2str(100);
rgbstr = num2str(1000);
pltstr = num2str(60);
figure(2)
title ('\color{cyan}\wbcstr \color{red}rbcstr \color{blue}rbcstr)
Thanks in advance,
Jan

採用された回答

Kevin Claytor
Kevin Claytor 2014 年 6 月 18 日
mytitle = sprintf('\\color{red}%d \\color{blue}%f',5,pi);
title(mytitle)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by