在 Tikz 中平滑繪製的函數

在 Tikz 中平滑繪製的函數

我最近不得不更改我在一篇論文中繪製的函數,並且更改的函數有許多粗略的部分。我嘗試過“樣本”和“平滑”,但無濟於事。即使是虛線也有一個非常糟糕的部分,破折號看起來像一個 S。

下面的最小工作範例:

\documentclass{article}
\usepackage{tikz}

\begin{document}
 \begin{figure}[ht]
        \centering
      \begin{tikzpicture}[xscale=8, yscale=6]
     
\draw[->] (0,0)--(1.4, 0);
\draw[->](0, 0)--(0, 1.4);

\draw[samples=201, domain=0:1.4,variable=\x] plot ({\x},{0.9*(1+\x^(0.4))+(0.1)*(1+\x^(0.4))^(-9)-\x});

\draw[samples=300, domain=0:1.4,smooth,variable=\x] plot ({\x},{(1+\x^(0.4))^(1/(0.9-1))});

\draw[samples=100, dashed, domain=0:1.4,smooth,variable=\x] plot ({\x},{0.7*(1+\x^(0.4))+(1-0.7)*(1+\x^(0.4))^(0.7/(0.7-1))-\x});

\draw[samples=500, dashed, domain=0:1.4,smooth,variable=\x] plot ({\x},{(1+\x^(0.4))^(1/(0.7-1))});

\end{tikzpicture} 
\end{figure}
\end{document}

非常感謝您的任何提示!

相關內容