我在 TikZ/pgfplots 图片中发现的一个错误

我在 TikZ/pgfplots 图片中发现的一个错误

这是我的代码:

\begin{tikzpicture} 
    [
        scale=1.05,
        declare function=
        {
            funcc(\x)=
            %(\x<-0.6) * (\x)+
            (\x<-0.6) * (0.7285067873303168+2.058823529411765*\x+2.1606334841628962*\x^2 + 0.7918552036199096*\x^3)+
            and(\x>=-0.6,\x<-0.4) * (1.1411764705882352+ 4.294117647058823*\x + 6.029411764705881*\x^2 + 
            2.941176470588235*\x^3)+
            and(\x>=-0.4,\x < -0.2) * (0.5*(2 + 6*\x + 5*\x^2))+
            and(\x>=-0.2,\x <0) * (1 +1*\x - 12.5*\x^2 - 25*\x^3)+
            and(\x>=0,\x <0.2) * (1 - 1*\x - 12.5*\x^2 +25*\x^3)+
            add(\x>=0.2,\x < 0.4) * (0.5*(2 - 6*\x + 5*\x^2))+
            and(\x>=0.4 ,\x<0.6) * (1.14118 - 4.29412*\x + 6.02941*\x^2 - 2.94118*\x^3) +
            %(\x>=0.6) * (\x^3);
            (\x>=0.6) * (0.728507 - 2.05882*\x + 2.16063*\x^2 - 0.791855*\x^3);
        },
    ]
\begin{axis}
    [
    title = {},%\quad The distribution of the points and the line of regression},
    axis lines = middle,
    legend pos=outer north east,
    xlabel={$x$},
    ylabel={$y$},
    xmin=-2, xmax=2,
    ymin=-2, ymax=2,
    ]
    \addplot%S 10
    [
    domain = -1:1,
    legend pos=outer north east,
    color=yellow,
    samples = 1000
    ]
    {
        (\x<-0.6) * (0.7285067873303168+2.058823529411765*\x+2.1606334841628962*\x^2 + 0.7918552036199096*\x^3)+
            and(\x>=-0.6,\x<-0.4) * (1.1411764705882352+ 4.294117647058823*\x + 6.029411764705881*\x^2 + 
            2.941176470588235*\x^3)+
            and(\x>=-0.4,\x < -0.2) * (0.5*(2 + 6*\x + 5*\x^2))+
            and(\x>=-0.2,\x <0) * (1 +1*\x - 12.5*\x^2 - 25*\x^3)+
            and(\x>=0,\x <0.2) * (1 - 1*\x - 12.5*\x^2 +25*\x^3)+
            add(\x>=0.2,\x < 0.4) * (0.5*(2 - 6*\x + 5*\x^2))+
            and(\x>=0.4 ,\x<0.6) * (1.14118 - 4.29412*\x + 6.02941*\x^2 - 2.94118*\x^3) +
            %(\x>=0.6) * (\x^3);
            (\x>=0.6) * (0.728507 - 2.05882*\x + 2.16063*\x^2 - 0.791855*\x^3)
    };
    
    \addplot %N 10
    [
    domain = -1:1,
    legend pos=outer north east,
    color=green,
    samples = 1000
    ]
    {
        -220.942*x^10+494.91*x^8-381.434*x^6+123.36*x^4-16.8552*x^2+1.
    };
    \addplot %N_{5}
    [
    domain = -1:1,
    legend pos=outer north east,
    color=blue,
    samples = 1000
    ]
    {
        1.20192*x^4-1.73077*x^2+0.567308
    };
    %\addlegendentry{$N_{5}(x)$}
    \addplot %f(x)
    [
    domain = -1:1,
    legend pos=outer north east,
    color=red,
    samples = 1000
    ]
    {
        1 /(1+25*x^2)
    };
    %\addlegendentry{$f(x) = \frac{1}{1+25x^{2}}$}
    \legend{$S_{10}(x)$,$N_{10}(x)$,$N_{5}(x)$,$f(x) = \frac{1}{1+25x^{2}}$};
    \end{axis}
\end{tikzpicture}   

结果如下:

在此处输入图片描述

黄线应该与红线近似相等,但差别太大了。

我从 Mathematica 中得到的黄线的正确结果如下:

在此处输入图片描述

无论如何我都找不到我的错误,所以我认为问题出在 pdgplots 本身。顺便说一句,我花了大约一个晚上的时间来修复我的代码,但似乎没问题。

答案1

将所有add改为and

\documentclass[border=1cm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture} 
    [
        scale=1.05,
        declare function=
        {
            funcc(\x)=
            %(\x<-0.6) * (\x)+
            (\x<-0.6) * (0.7285067873303168+2.058823529411765*\x+2.1606334841628962*\x^2 + 0.7918552036199096*\x^3)+
            and(\x>=-0.6,\x<-0.4) * (1.1411764705882352+ 4.294117647058823*\x + 6.029411764705881*\x^2 + 
            2.941176470588235*\x^3)+
            and(\x>=-0.4,\x < -0.2) * (0.5*(2 + 6*\x + 5*\x^2))+
            and(\x>=-0.2,\x <0) * (1 +1*\x - 12.5*\x^2 - 25*\x^3)+
            and(\x>=0,\x <0.2) * (1 - 1*\x - 12.5*\x^2 +25*\x^3)+
            and(\x>=0.2,\x < 0.4) * (0.5*(2 - 6*\x + 5*\x^2))+
            and(\x>=0.4 ,\x<0.6) * (1.14118 - 4.29412*\x + 6.02941*\x^2 - 2.94118*\x^3) +
            %(\x>=0.6) * (\x^3);
            (\x>=0.6) * (0.728507 - 2.05882*\x + 2.16063*\x^2 - 0.791855*\x^3);
        },
    ]
\begin{axis}
    [
    title = {},%\quad The distribution of the points and the line of regression},
    axis lines = middle,
    legend pos=outer north east,
    xlabel={$x$},
    ylabel={$y$},
    xmin=-2, xmax=2,
    ymin=-2, ymax=2,
    ]
    \addplot%S 10
    [
    domain = -1:1,
    legend pos=outer north east,
    color=yellow,
    samples = 100
    ]
    {
        (\x<-0.6) * (0.7285067873303168+2.058823529411765*\x+2.1606334841628962*\x^2 + 0.7918552036199096*\x^3)+
            and(\x>=-0.6,\x<-0.4) * (1.1411764705882352+ 4.294117647058823*\x + 6.029411764705881*\x^2 + 
            2.941176470588235*\x^3)+
            and(\x>=-0.4,\x < -0.2) * (0.5*(2 + 6*\x + 5*\x^2))+
            and(\x>=-0.2,\x <0) * (1 +1*\x - 12.5*\x^2 - 25*\x^3)+
            and(\x>=0,\x <0.2) * (1 - 1*\x - 12.5*\x^2 +25*\x^3)+
            and(\x>=0.2,\x < 0.4) * (0.5*(2 - 6*\x + 5*\x^2))+
            and(\x>=0.4 ,\x<0.6) * (1.14118 - 4.29412*\x + 6.02941*\x^2 - 2.94118*\x^3) +
            %(\x>=0.6) * (\x^3);
            (\x>=0.6) * (0.728507 - 2.05882*\x + 2.16063*\x^2 - 0.791855*\x^3)
    };
    
    \addplot %N 10
    [
    domain = -1:1,
    legend pos=outer north east,
    color=green,
    samples = 100
    ]
    {
        -220.942*x^10+494.91*x^8-381.434*x^6+123.36*x^4-16.8552*x^2+1.
    };
    \addplot %N_{5}
    [
    domain = -1:1,
    legend pos=outer north east,
    color=blue,
    samples = 100
    ]
    {
        1.20192*x^4-1.73077*x^2+0.567308
    };
    %\addlegendentry{$N_{5}(x)$}
    \addplot %f(x)
    [
    domain = -1:1,
    legend pos=outer north east,
    color=red,
    samples = 100
    ]
    {
        1 /(1+25*x^2)
    };
    %\addlegendentry{$f(x) = \frac{1}{1+25x^{2}}$}
    \legend{$S_{10}(x)$,$N_{10}(x)$,$N_{5}(x)$,$f(x) = \frac{1}{1+25x^{2}}$};
    \end{axis}
\end{tikzpicture}   
\end{document}

几个地块

黄色图靠近红色图。显然,我不知道你想做什么,但你犯了这个错误的可能性似乎比由于错误导致的可能性更大。

相关内容