패키지 PGF 수학 오류: 알 수 없는 연산자 `c' 또는 `co'('{4cos(deg(x))}')

패키지 PGF 수학 오류: 알 수 없는 연산자 `c' 또는 `co'('{4cos(deg(x))}')

아래에 제공된 코드에서 다음 오류가 발생합니다.

패키지 PGF 수학 오류: 알 수 없는 연산자 c' orco'('{4cos(deg(x))}').

패키지 PGF 수학 오류: 알 수 없는 연산자 p' orpi'('2pi').

패키지 PGF 수학 오류: 알 수 없는 연산자 p' orpi'('2pi').

도와주세요

 \documentclass{article}
    \usepackage{graphicx} % Required for inserting images
    
    \usepackage{amsmath}
    \usepackage[a4paper, total={6in, 8in}]{geometry}
    \usepackage{graphicx} % Required for inserting images
    \usepackage{pgfplots}
    \usepackage{tikz}
    \usetikzlibrary{shapes.geometric, arrows}
    
    \begin{document}
    
    \begin{center}
    \begin{tikzpicture}[scale=0.8]
    \draw[<->] (-4,0) -- (4,0) node[right] {$x$};
    \draw[<->] (0,-4) -- (0,4) node[above] {$y$};
    \draw[dashed] (0,-4) -- (0,4);
    \draw[blue,thick,->] plot [domain=0:2pi,samples=100] ({0},{4cos(deg(x))});
    \draw[red,thick,->] plot [domain=0:2pi,samples=100] ({0},{-4cos(deg(x))});
    \end{tikzpicture}
    \end{center}
    
    
    \end{document}

답변1

이 시도:

   \documentclass{article}
   \usepackage{graphicx} % Required for inserting images
   
   \usepackage{amsmath}
   \usepackage[a4paper, total={6in, 8in}]{geometry}
   \usepackage{graphicx} % Required for inserting images
   \usepackage{pgfplots}
   \usepackage{tikz}
   \usetikzlibrary{shapes.geometric, arrows}
   
   \begin{document}
   
   \begin{center}
     \begin{tikzpicture}[scale=0.8]
       \draw[<->] (-4,0) -- (4,0) node[right] {$x$};
       \draw[<->] (0,-4) -- (0,4) node[above] {$y$};
       \draw[dashed] (0,-4) -- (0,4);
       \draw[blue,thick,domain=0:{2*pi},samples=100] plot  ({\x},{4*cos(\x r)});
       \draw[red,thick,domain=0:{2*pi},samples=100] plot ({\x},{-4*cos(\x r)});
     \end{tikzpicture}
   \end{center}
   
   
   \end{document}

여기에 이미지 설명을 입력하세요

관련 정보