Zeichnen der Grafik des hyperbolischen Tangens

Zeichnen der Grafik des hyperbolischen Tangens

Kann mir jemand helfen, die Grafik von tanh in Latex zu zeichnen? Ich weiß, dass ich pgfplot verwenden muss, aber ich weiß nicht, wie ich es verwenden soll. Jede Art von Hilfe ist willkommen.

Antwort1

Ich würde auf jeden Fall die Verwendung von Folgendem empfehlen pgfplots:

Bildbeschreibung hier eingeben

Code:

\documentclass[border=2pt]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{calc}
\usepackage{amsmath}

\begin{document}
\begin{tikzpicture}
\begin{axis}[
    xmin=-2.5, xmax=2.5,
    ymin=-1.5, ymax=1.5,
    axis lines=center,
    axis on top=true,
    domain=-2.5:2.5,
    ylabel=$y$,
    xlabel=$x$,
    ]

    \addplot [mark=none,draw=red,ultra thick] {tanh(\x)};
    \node [right, red] at (axis cs: 1,0.7) {$y = \tanh x$};
    
    %% Add the asymptotes
    \draw [blue, dotted, thick] (axis cs:-2.5,-1)-- (axis cs:0,-1);
    \draw [blue, dotted, thick] (axis cs:+2.5,+1)-- (axis cs:0,+1);
\end{axis}
\end{tikzpicture}
\end{document}

verwandte Informationen