I know how to get a grid in pgfplots as shown below, but how can I get additionally a subgrid without labels?
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[grid=both,no markers,samples=100]
\addplot {sin(deg(x))};
\end{axis}
\end{tikzpicture}
\end{document}
Output:

