If plot in the matlab you can use help in the maltab.
This is code demo:
x = -pi:.1:pi;y = sin(x);
p = plot(x,y)
set(gca,'XTick',-pi:pi/2:pi)
set(gca,'XTickLabel',{'-pi','-pi/2','0','pi/2','pi'})
xlabel('-\pi \leq \Theta \leq \pi')ylabel('sin(\Theta)')
title('Plot of sin(\Theta)')% \Theta appears as a Greek symbol (see String (http://www.matlabtutorials.com/mathforum/index.php?action=redirect;url=http://www.mathworks.com/help/techdoc/ref/text_props.html#String))% Annotate the point (-pi/4, sin(-pi/4))text(-pi/4,sin(-pi/4),'\leftarrow sin(-\pi\div4)',...
'HorizontalAlignment','left')% Change the line color to red and% set the line width to 2 points set(p,'Color','red','LineWidth',2)