双曲正接のグラフを描く

双曲正接のグラフを描く

誰か、LaTeX で tanh のグラフをプロットするのを手伝ってくれませんか。pgfplot を使う必要があるのはわかっていますが、実際にどのように使うのかわかりません。どんな助けでもありがたいです。

答え1

絶対に以下を使用することをお勧めしますpgfplots:

ここに画像の説明を入力してください

コード:

\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}

関連情報