After answering a question in pgfplots, asking to plot a function; I thought about how I can map the 3D function into the planes. Something like the plots in this page but I could not reach any solution.
Here are my functions and their output. I want to show the left plot in the xy plane of the 3d plot; or map the function on xz and yz planes.

% pdflatex
\documentclass[margin=2mm]{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\pgfmathdeclarefunction{F}{3}{\pgfmathparse{#1* exp(#2*#3)}}
\begin{axis}
[
smooth, grid=both,minor tick num=1,
xlabel=$x$,ylabel=$y$,
tick align=inside,
samples=1000,
samples y=0,
]
\addplot [solid, thick, data cs=polarrad, domain=0:10*pi] {F(5,-0.1,x)};
\end{axis}
\end{tikzpicture}
~
\begin{tikzpicture}
\pgfmathdeclarefunction{F}{3}{\pgfmathparse{#1* exp(#2*#3)}}
\begin{axis}
[smooth, grid=both,minor tick num=1,
xlabel=$x$,ylabel=$y$,zlabel=$z$,
samples=1000,
samples y=0,
]
\addplot3+
[solid, thick, black,
mark=none,
thick,
domain=0:10*pi,
]
({F(5,-0.1,x)*cos(deg(x))},{F(5,-0.1,x)*sin(deg(x))},{F(5,-0.1,x)});
\end{axis}
\end{tikzpicture}
\end{document}

\addplot3 [...] ({F(5,-0.1,x)*cos(deg(x))},{F(5,-0.1,x)*sin(deg(x))},{0});will plot the function in thexyplane. Is that what you mean? – Jake Oct 27 '14 at 12:53