쌍곡탄젠트 그래프 그리기

쌍곡탄젠트 그래프 그리기

라텍스에서 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}

관련 정보