I'm trying to make an tikz plot from a matlab plot. The problem is that de y label is on the y axis.

I used the following code:
\begin{tikzpicture}
\begin{axis}[%
width=\figurewidth,
height=\figureheight,
scale only axis,
xmin=0, xmax=320,
xlabel={$\text{Debiet [m}^\text{3}\text{/h]}$},
xmajorgrids,
ymin=0, ymax=9e-006,
ylabel={$\text{d}_{\text{p,100\%}}\text{ [m]}$},
ymajorgrids,
axis lines=left,
title={ },
legend style={nodes=right}]
\addplot [
color=black,
solid
]
coordinates{
...
addlegendentry{$\text{d}_{\text{p,100\%}}\text{ bij ideale aanstroming}$};
\end{axis}
\end{tikzpicture}
.
I tried several things but it still doesn't work. Is there a way I can move the y label to the right or use a common scaling factor on the y-axis.

