both text and numbers in axis

Asked by David C on 20 Jun 2012
Latest activity Commented on by David C on 21 Jun 2012

I'm wondering if matlab is able to customize the axis where some of the ticks are strings and some of the ticks are number?

or inconsistent tick marks (for example, tick marks 1-5 in 1 tick intervals, then 5-100 in intervals of 5?

0 Comments

David C

Tags

Products

No products are associated with this question.

1 Answer

Answer by Walter Roberson on 20 Jun 2012
Accepted answer
set(gca, 'XTick', [1 2 3 4 5 10 15])
set(gca,'XTickLabel',{1 2 3 4 'Hello' 10 15})

3 Comments

David C on 20 Jun 2012

works like a charm Walter

now I ran into the issue of the primary and secondary axis not aligned

my primary goes from -5 to 20 in increments of 5 and my 2ndary goes from -5 to 100 in increments of 10
both axes from -5 to 0 goes from increments of 1.

the 0 on the 2ndary axis is much lower than the 0 on the primary axis :(

Walter Roberson on 20 Jun 2012

I'm not sure what you are referring to about primary and secondary axis? Are you using plotyy() ?

David C on 21 Jun 2012

yessir! but i figured it out

I had to manually scale the axes to make the ticks match the values

I'm grateful as always :)

Walter Roberson

Contact us