A mesma escala para o eixo x e o eixo y

A mesma escala para o eixo x e o eixo y

Quero fazer a mesma escala nos dois eixos x e y, você tem ideia do que há de errado nesse código?

Aqui está o código

\begin{tikzpicture}[>=latex]
\begin{axis}[axis x line=center,
             axis y line=center,
             xlabel style={below right},
            ylabel style={above left},
            ytick=\empty,
            xtick=\empty,
           ]
                    \addplot[name path=F,blue,domain={-2:5}] {x^3-3*x} node[pos=.8, above]{$f$};
          \addplot[name path=G,green,domain={-2:5}] {6*x}node[pos=.1, below]{$g$};
          \addplot[pattern=north west lines, pattern color=brown!50]fill between[of=F and G, soft clip={domain=-1:4}];

    \end{axis}
\end{tikzpicture}

Responder1

Você pode querer reajustar as regiões do clipe suave e as posições dos nós, mas se quiser que os eixos sejam dimensionados igualmente, você pode adicionar axis equaluma chave.

%\usetikzlibrary{intersections, pgfplots.fillbetween, patterns}
\begin{tikzpicture}[>=latex]
    \begin{axis}[axis x line=center,
                 axis y line=center,
                 xlabel style={below right},
                 ylabel style={above left},
                 ytick=\empty,
                 xtick=\empty,
                 axis equal % <---
           ]
          \addplot[name path=F,blue,domain={-2:5}] {x^3-3*x} node[pos=.8, above]{$f$};
          \addplot[name path=G,green,domain={-2:5}] {6*x}node[pos=.1, below]{$g$};
          \addplot[pattern=north west lines, pattern color=brown!50]fill between[of=F and G, soft clip={domain=-1:4}];
    \end{axis}
\end{tikzpicture}

informação relacionada