Insert solar symbol on plot axis

8 visualizaciones (últimos 30 días)
charles aouad
charles aouad el 21 de Jul. de 2019
Comentada: Walter Roberson el 24 de Jul. de 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

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 21 de Jul. de 2019
Editada: KALYAN ACHARJYA el 21 de Jul. de 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 comentarios
charles aouad
charles aouad el 24 de Jul. de 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 el 24 de Jul. de 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.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by