Code: Select all
\documentclass[11pt,a4paper,twoside]{report}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}[scale=2]
\draw [draw=black,thick,->] (0.00,0.00) -- (pi,0.00); % draw x-axis bottom
\draw [draw=black,thick,->] (0.00,-2.00) -- (0.00,2.00); % draw y-axis bottom
\draw [blue,domain=0:2*pi] plot (\x,{cos(\x*3 r)+0.5*sin(\x r)+sin(\x*0.5 r)});
\end{tikzpicture}
\end{document}