我已经尝试了以下代码,但是 x 为负的部分没有被绘制
\begin{subfigure}{0.4\textwidth}
\begin{tikzpicture}
\begin{axis}
xtick=\empty,ytick=\empty,
xlabel={$t$},xlabel style={anchor=east},
ylabel={$f(x)=x^{2/3}$},ylabel style={anchor=north}]
\addplot[-] expression[domain=-1:1,samples=1000]{x^(2/3)};
\end{axis}
\end{tikzpicture}
\end{subfigure}
\end{figure}
答案1
更新因为看起来我第一次的编辑是错误的,或者至少从数学的角度来看不够正确(我不是数学家),让我把它改成:
我认为以下代码可以提供帮助
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
%\begin{subfigure}{0.4\textwidth}
\begin{tikzpicture}
\begin{axis}
xtick=\empty,ytick=\empty,
xlabel={$t$},xlabel style={anchor=east},
ylabel={$f(x)=x^{2/3}$},ylabel style={anchor=north}]
\addplot[-] expression[domain=-1:1,samples=1000]{(x^2)^(1/3)};
\end{axis}
\end{tikzpicture}
%\end{subfigure}
%\end{figure}
\end{document}
原句:x^(2/3) = (x^2)^(1/3) 似乎有效