I am trying to do something like this:
Putting some code together gathered from the net gets me nowhere!
\documentclass{standalone}
\usepackage{amsmath}
\usepackage{pgfplots}
\pgfplotsset{trig format plots=rad}
\pgfplotsset{compat=1.12}
\begin{document}
\begin{tikzpicture}[
% /pgfplots/y=2cm, /pgfplots/x=0.1mm % To make sure all the plots use the same scale
]
%%%%%%
\begin{axis}[
anchor=origin,
rotate around={0:(current axis.origin)},
xmin=0, ymin=0, clip=false, % We only want the positive y axis, hence `ymin=0`. `clip=false` is necessary so we can still see the negative component
axis lines*=center, % Axis lines going through the origin
xtick=\empty, ytick=\empty, % No tick marks
enlarge y limits={upper, value=5} % Make the y axis a bit longer than necessary
]
\addplot [thick, red, domain=0.4*pi:0.5*pi,samples= 200] {(cos(5*x^2)*exp(-(x-1.4*pi)^2/0.3)};
\end{axis} %{(cos(5*x^2)*exp(-(x-1.4*pi)^2/0.3)};
%%%%%
\begin{axis}[
hide axis,
%grid
]
\addplot [ultra thick, magenta, domain=-0.2*pi:0.15*pi,samples= 100] {9*sin(5*x)+30};
\addplot [ thick, blue, domain=-0.05*pi:0.05*pi,samples= 300] {(3*cos(25*x)^2*exp(-x^2/0.01)-9};
\end{axis}
\end{tikzpicture}
\end{document}
Any suggestions? Thx in advance

