PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Hysterese mit tikz



Fite
12-08-2013, 18:11
Hallo,

ich möchte qualitativ eine Hystereseschleife in ein tikz-Diagramm zeichnen.
Über welche Funktion mache ich das am besten?

Viele Grüße
Fite

LuPi
13-08-2013, 06:15
Hmm, diese Frage ist etwas sehr pauschal. Und ein Minimalbeispiel wäre
auch nicht schlecht.

Meinst Du so etwas?


\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (-5,0) -- (5,0) (0,-5) -- (0,5);
\draw (-5,-3) -- (-4,-3) to [controls={+(3,0) and +(-3,0)}] (2,3) -- (5,3);
\draw (5,3) -- (4,3) to [controls={+(-3,0) and +(3,0)}] (-2,-3) -- (-5,-3);
\end{tikzpicture}
\end{document}