As with the picture, I know I can plot polar plots, but the problam now is with coordinate axis. The best with that I can come is:(see atrachment)
So can I center the picture in coordinate system or is possibly to manipilate with default polar axis so that they will look like this?
Code: Select all
\documentclass[11pt]{standalone}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}
\usepgfplotslibrary{polar}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}[>=stealth]
\draw[->] (-4,0) -- (4,0) node[right] {$x$};
\draw[->] (0,-4) -- (0,4) node[above] {$y$};
\begin{polaraxis}[hide axis]
\addplot+[pattern=dots,pattern color=blue,mark=none,domain=0:360,samples=300]{cos(4*x)};
\end{polaraxis}
\end{tikzpicture}
\end{document}