von Schimmelpilz » Mo 23. Nov 2020, 20:27
Ups, hab's selber gelöst. Man kann verlängern, aber nur in x-Richtung, weil sich der Graph entlang dieser Achse ausbreitet.
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\draw[rotate=225,->, >=stealth, scale=0.8, domain=-3:3, smooth, samples=500, variable=\x, red, line width = 1pt] plot ({\x},
{
0.5*sin(1000*\x)*
1/0.5*exp(-((\x*\x)/(0.5)))
}) --++ (0.2,0);
\end{tikzpicture}
\end{document}
Ups, hab's selber gelöst. Man kann verlängern, aber nur in x-Richtung, weil sich der Graph entlang dieser Achse ausbreitet.
[code]
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\draw[rotate=225,->, >=stealth, scale=0.8, domain=-3:3, smooth, samples=500, variable=\x, red, line width = 1pt] plot ({\x},
{
0.5*sin(1000*\x)*
1/0.5*exp(-((\x*\x)/(0.5)))
}) --++ (0.2,0);
\end{tikzpicture}
\end{document}
[/code]