After you create your plot, create your own x-axis (or y-axis) label using
xticklabel
e.g.
plot(1:4)
grid on
set(gca,'Xtick',1:4,'XTickLabel',{'a', 'b', 'c', 'd'})
Hope that helps
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!