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}

어떤 조언이라도 감사드립니다!

관련 정보