MATLAB Is it possible to create a plot with tick labels as multiples of pi in MATLAB?

Click For Summary
Creating a plot in MATLAB with the horizontal axis labeled in increments of multiples of pi is achievable by setting custom tick marks and labels. Users can define the tick positions using the command set(gca,'XTick',0:pi/2:3*pi/2), which specifies the desired range. Correspondingly, tick labels can be set with set(gca,'XTickLabel',{'0','pi/2','pi','3pi/2'}), ensuring the number of labels matches the tick marks to avoid cycling through labels. However, it is important to note that MATLAB does not support TeX formatting for tick labels, limiting the display options for symbols like pi to plain text. For other text elements like titles and axis labels, TeX formatting is supported.
danago
Gold Member
Messages
1,118
Reaction score
4
I want to create a plot, but want the horizontal axis to have increments as multiples of pi eg. {0, pi/2, pi, 3pi/2, ... }

Is this at all possible in matlab?
 
Physics news on Phys.org
Yes - you can set where the tick marks are on an axis:

This will control where the ticks go (use whatever range you want):
set(gca,'XTick',0:pi/2:3*pi/2)

(Note that gca returns the handle for the current set of axes)

This will control the labels for the ticks:
set(gca,'XTickLabel',{'0','pi/2','pi','3pi/2'})


So you can attach text labels to all of your tick marks - make sure that you have the correct number of labels - I think if you have more tick marks than labels, MATLAB will just cycle back through your list of labels for the extra tick marks. Also, I know that MATLAB supports some tex and latex formatting so that you could display \pi instead of pi, but I'm not sure if that is supported for tick labels (and if it is I'd have to play around with it to figure out how that works).
 
Thanks very much, exactly what i was after :smile:
 
Unfortunately, MATLAB can't display tex characters in tick labels.

From MATLAB help - keyword: Axes properties:

...
Note that tick labels do not interpret TeX character sequences (however, the Title, XLabel, YLabel, and ZLabel properties do).
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
3
Views
2K