plot tools tick mark pi

4 次查看(过去 30 天)
nathaniel sokolow
How can I write pi in a tick mark using plot tools? it says tick marks must be numeric when I try.

回答(1 个)

Jos (10584)
Jos (10584) 2016-6-8
t = linspace(0,2*pi,100) ;
y = sin(t) ;
plot(t,y,'bo-') ;
set(gca,'xtick',[0:pi:2*pi]) % where to set the tick marks
set(gca,'xticklabels',{'0','\pi','2\pi'}) % give them user-defined labels

类别

Help CenterFile Exchange 中查找有关 Grid Lines, Tick Values, and Labels 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by