I want to use in pgfplots \addplot plot cordinates with relative coordinates. However the following syntax doesn't work:
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot plot coordinates {(0,0) ++(2,2) ++(1,3)};
\end{axis}
\end{tikzpicture}
\end{document}
How can I make this (or something similar) work?
