绘制函数图形的问题出在哪里?

绘制函数图形的问题出在哪里?

这为什么不起作用?

\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{tikz} % package used for the tikz  
\usepackage{pgfplots} % package used to draw plots  
\usepgfplotslibrary{polar} % the polar library is used to implement the negative and positive axis  
\usepgflibrary{shapes.geometric}  
\usetikzlibrary{calc}  
\pgfplotsset{my style/.append style={axis x line=middle, axis y line=  
middle, xlabel={$x$}, ylabel={$y$}, axis equal }}

\begin{document}
\begin{center}
\begin{tikzpicture} % tikz environment   

\begin{axis}  
[my style, xtick={-10,10}, ytick={-10,10}, xmin=-10, xmax=10, ymin=-11, ymax=11]
\addplot[domain=-0.99:10] {-100*(x^5+7*x^4+21*x^3+35*x^2+35*x+141)/(x+1)^7};
\end{axis}  
\end{tikzpicture}  
\end{center}
\end{document}

我收到此错误:

!扫描使用 \pgfplots@addplotimpl@expression@curly 时文件结束。\par<> "./MATLAB report.tex"我怀疑您忘记了 '}',导致我读到了您希望我停止的地方。我会尝试恢复;但如果错误很严重,您最好现在输入“E”或“X”并修复您的文件。!紧急停止。<> “./MATLAB report.tex”(作业中止,未找到合法的 \end)这是您使用的 TeX 内存量:492452605055 个字符串中有 23530 个字符串,3132156780355 个字符串字符中有 300000027507 个多字母控制序列,15000+20000010132 个多字母控制序列中有 39 种字体的字体信息,90001141 个连字异常中有 819169i、6n、98p、812b、1139s 个堆栈位置中有 5000i、500n、10000p、200000b、50000s 个!==> 发生致命错误,未生成输出 PDF 文件!

如何修复?

相关内容