From: Boris on
Hi,

I would be grateful if someone can let me know how to show in matlab figure e.g. in ylabel arithmetic mean symbol ( line above the letter)?
One way is to write >> ylabel('Tmean - T5');
but I want to use short line over T indicating arithmetic mean without writing 'mean' by word.

Thank you,

Boris
From: Wayne King on
"Boris " <obriboris(a)yahoo.com.au> wrote in message <i25umv$boi$1(a)fred.mathworks.com>...
> Hi,
>
> I would be grateful if someone can let me know how to show in matlab figure e.g. in ylabel arithmetic mean symbol ( line above the letter)?
> One way is to write >> ylabel('Tmean - T5');
> but I want to use short line over T indicating arithmetic mean without writing 'mean' by word.
>
> Thank you,
>
> Boris

Hi Boris,

plot(randn(100,1));
ylabel('$\bar{T}-T5$','interpreter','latex')

Hope that helps,
Wayne
From: Wayne King on
"Boris " <obriboris(a)yahoo.com.au> wrote in message <i25ul3$88t$1(a)fred.mathworks.com>...
> Hi,
>
> I would be grateful if someone can let me know how to show in matlab figure e.g. in ylabel arithmetic mean symbol ( line above the letter)?
> One way is to write >> ylabel('Tmean - T5');
> but I want to use short line over T indicating arithmetic mean without writing 'mean' by word.
>
> Thank you,
>
> Boris

Duplicating my response, just in case:

plot(randn(100,1));
ylabel('$\bar{T}-T5$','interpreter','latex')