Subscript in figure WHAT AM I DOING WRONG?

18 views (last 30 days)
Hi, for some reason I can't get subscript on my axes titles to work properly, below I've tried two different ways to produce suscript that work on my scatter plots, but are not functioning here. When run, the axes titles are exactly as written with all the symbols. Can someone please tell me what I've done wrong? Running version version R0219b. Thank you for your time.
mdl = fitlm(x,y)
coefCI(mdl)
plot(mdl,'Marker','.','Color','b')
ylabel('Comparison 1 NO_2 ppb_v')
xlabel('Comparison 2 [NO_{2}] ppb_{v}')

Accepted Answer

Stephan
Stephan on 20 Oct 2020
Edited: Stephan on 20 Oct 2020
  3 Comments
Danielle Blum
Danielle Blum on 23 Oct 2020
Thank you, I managed to figure it out with the final two links and this additional link others might find helpful.
Here is what the labels look like now:
ylabel('Comparison 1 $NO_{2}$ $ppb_{v}$','interpreter','latex')
xlabel('Comparison 2 $NO_{2}$ $ppb_{v}$','interpreter','latex')
For those who are new to this notation, like me, placing the $ around the entire label results in no spaces between words or units.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!