Changing the font size in the mask gives warning

4 visualizzazioni (ultimi 30 giorni)
Igor
Igor il 28 Apr 2023
Risposto: Fangjun Jiang il 30 Apr 2023
Hi, when I use the fontsize command in the mask
text(5,10, 'Gain','FontSize',10)
I get the warning:
I can change the font if I use|:
text(0.5,0.7,'\bf\fontsize{10}text sample')
but if I have a defined string, e.g.
select = 'version a';
str = sprintf('Selection = %s', select);
then, to display the string on the mask, I can use
dips(str)
or
text(5,10,str)
but in both cases I don't know how to change the font size.

Risposte (1)

Fangjun Jiang
Fangjun Jiang il 30 Apr 2023
You may not realize, text() used in Simulink Mask doesnot have full functionality as in MATLAB. See this note in the doc.
While this text function is identical in name to its corresponding MATLAB® function, it provides only the functionality described on this page.
To solve your problem, you need to construct a string from your variable and the TeX formatting and then use text(x,y,'text')

Categorie

Scopri di più su Author Block Masks in Help Center e File Exchange

Tag

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by