Clear Filters
Clear Filters

Insert solar symbol on plot axis

14 views (last 30 days)
charles aouad
charles aouad on 21 Jul 2019
Commented: Walter Roberson on 24 Jul 2019
Hello everyone, how can i insert the solar symbol on my plot axis .tried the following and it doesnt work solar = char(9737) ylabel( ['10^{-6} M_',solar, 'Year^{-1}'], 'FontSize',14,'FontWeight','bold'):it gives “?”instead of solar symbol.help

Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 21 Jul 2019
Edited: KALYAN ACHARJYA on 21 Jul 2019
Is this you are looking for?
I tried with your code
solar=char(9737)
ylabel(['10^{-6} M_',solar, 'Year^{-1}'], 'FontSize',14,'FontWeight','bold');
  10 Comments
charles aouad
charles aouad on 24 Jul 2019
thank you very much walter for your help.
is there any way where i can specify that this label will gof or this sub plot without the handles?
like when i create the subplot i can immdiately label the axes?
why the command set('sub1','ylabel','velocity in km/s') doesnt work?
Walter Roberson
Walter Roberson on 24 Jul 2019
I do not know what sub1 is in this context.
You need to be careful with calling xlabel() or ylabel() just after your subplot() call, in that if you do not do a hold on before you plot() then plot() will probably erase the labels.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!