Hallo zusammen,

ich brauche in einer Grafik 2mal eine Sinus-Kurve, wovon eine um 270° gedreht werden soll.

Wenn ich einfach \draw (0,0) sin () cos (); mit den entsprechenden Koordinaten eintippe erhalte ich einen komischen Verlauf.

Wie muss ich meinen Code verändern, dass ich in der von oben nach unten verlaufenden Kurve eine "schöne" sinus-kurve habe.

Schon mal Danke für eure Hilfe!

Code:
\documentclass{scrartcl}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}

%%%%%%%%%
%% um 270° gedreht
%%%%%%%%%
		\draw[dashed] (-0.75,2) -- (-0.75,-5);
		\draw [->](-0.75,-5) -- (-0.75,-9) node[rotate=270,at end,anchor=north]{t};
		\draw [->](-2.25,-5) -- (0.75,-5) node[rotate=270, at end,anchor=east]{s};
		
		\fill (-0.75,-5) circle (1pt);
		\draw [->] (-0.75,-5.5)--(0.25,-5.5);
		\fill (0.25,-5.5) circle (1pt);
		\fill (-0.75,-6) circle (1pt);
		\draw [->] (-0.75,-6.5)--(-1.75,-6.5);
		\fill (-1.75,-6.5) circle (1pt);
		\fill (-0.75,-7) circle (1pt);
		\fill (0.25,-7.5) circle (1pt);
		\fill (-0.75,-8) circle (1pt);
		\fill (-1.75,-8.5) circle (1pt);
		\draw (-0.75,-5) cos (0.25,-5.5) sin (-0.75,-6) cos (-1.75,-6.5) sin (-0.75,-7) cos (0.25,-7.5);
%%%%%%%%%
%% normal
%%%%%%%%%
		\draw [->] (3,-8) -- (10,-8) node[at end,anchor=north east]{Weg $\frac{s}{m}$};
		\draw [->] (3,-11) -- (3,-5) node[at end,anchor=east] {Druck $\frac{P}{Pa}$};
		\draw (3,-8) sin (4,-7) cos (5,-8) sin (6,-9) cos (7,-8) sin (8,-7);
\end{tikzpicture}
\end{document}