我想要指示 TikZ 绘制有理函数的图形的代码y=(x^{2}+5x+6)/(x^{2}+2x-3)
。我尝试使用addplot[very thin,blue]{frac(x^{2}+5x+6)/(x^{2}+2x-3)}
。该图有一个垂直渐近线 x = 1。绘制这条线(带箭头的虚线)的代码是什么?
\documentclass[10pt]{amsart}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\begin{document}
\hspace*{\fill}
\begin{tikzpicture}
\begin{axis}[axis equal image,
xmax=8,ymax=7,
axis lines=middle,
restrict y to domain=-7:7,
enlargelimits={abs=1cm},
axis line style={latex-latex},
ticklabel style={fill=white},
ytick=\empty,
xtick={-3}
%xlabel=$x$,ylabel=$y$,
]
\addplot[domain=-10:10,mark=none,samples=10] {frac{x + 2}{x - 1} node [above left, yshift=3pt]{$\scriptstyle{y}=\frac{x^{2}+5x+6}{x^{2}+2x-3}$};
\draw [fill=white] (-3,0) circle [radius=1.5pt];
\end{axis}
\end{tikzpicture}
\hspace{\fill}
\end{document}
答案1
在我的 PGFplots 版本中,\addplot
您提供的命令甚至无法编译,所以我不得不猜测您想要实现什么。在 PGFplots 中,您可以像这样写分数:1/(x^2)
。
马修对杰克的回答的评论这个问题x=1
您可以使用 键在 处绘制渐近线vasymptote=1
。为了在不使用大量样本的情况下可靠地截断绘图(橙色曲线),您可以分别绘制两个部分,指定 ,domain
以便 略微提前结束x=1
(黑色曲线)。
\documentclass[10pt]{amsart}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\pgfplotsset{vasymptote/.style={
before end axis/.append code={
\draw[densely dashed] ({rel axis cs:0,0} -| {axis cs:#1,0})
-- ({rel axis cs:0,1} -| {axis cs:#1,0});
}
}}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis equal image,
axis lines=middle,
xmin=-10,xmax=10,
ymin=-10,ymax=10,
enlargelimits={abs=1cm},
axis line style={latex-latex},
ticklabel style={fill=white},
ytick={-10,10},
xtick={-3,-10,10},
vasymptote=1,
]
% This doesn't clip to y=-10:10 nicely
% because there are too few samples near the asymptote:
\addplot[very thick, orange, domain=-10:10,samples=200, restrict y to domain=-10:10]
{(x^2+5*x+6)/(x^2+2*x-3)};
% Draw the two parts separately with individual domains:
\addplot[samples=50,domain=-10:1-0.27] {(x^2+5*x+6)/(x^2+2*x-3)};
\addplot[samples=50,domain=1+0.33:10] {(x^2+5*x+6)/(x^2+2*x-3)};
\draw [fill=white] (-3,0) circle [radius=1.5pt]; % What is this?
\end{axis}
\end{tikzpicture}
\end{document}
答案2
Mark Wibrow 的解决方案在 时将产生永久性的灾难性plotpoints=14*(2^n)+1
(对于任何非负整数n
)。
因此可以使用以下解决方案来克服这样的问题(只是为了好玩)。
\documentclass[pstricks,border=20pt,12pt]{standalone}
\usepackage{pst-plot}
\def\f{(x+2)/(x-1)}
\begin{document}
\begin{psgraph}[algebraic,plotpoints=1000,Dy=5,Dx=2]{->}(0,0)(-11,-30)(11,35){20cm}{20cm}
\psset{linecolor=red}
\psplot{-10}{0.9}{\f}
\psplot{1.1}{10}{\f}
\psset{linestyle=dashed,linecolor=blue}
\psline(1,-30)(1,35)
\psline(-11,1)(11,1)
\end{psgraph}
\end{document}
答案3
只是为了好玩,和 PSTricks 一起 :O
\documentclass[pstricks,border=5]{standalone}
\usepackage{pst-plot}
\begin{document}
\psset{xunit=20pt,yunit=20pt}
\begin{pspicture}*(-7.5,-7.5)(7.5,7.5)
\psgrid[gridlabels=0,gridcolor=gray!25,subgridcolor=gray!10](-7,-7)(7,7)
\psaxes[labels=none,ticksize=-2pt 2pt]{<->}(0,0)(-7,-7)(7,7)[$x$,-90][$y$,0]
\psplot[linecolor=blue,plotstyle=line,algebraic, yMaxValue=7,plotpoints=1000]
{-7}{7}{(x^2+5*x+6)/(x^2+2*x-3)}
\psline[linestyle=dashed](1,-7)(1,7)
\rput(4.5,4){$\displaystyle f(x)=\frac{x^2+5x+6}{x^2+2x-3}$}
\end{pspicture}
\end{document}
答案4
您所需要的只是几个 addplot 命令:
\addplot[domain=-10:10,samples=1000]
{(x^2+5*x+6)/(x^2+2*x-3)};
\addplot[dashed, purple, latex-latex]
coordinates{(1,-6) (1,6)};
第一个应该绘制您的实际函数,第二个使用坐标绘制垂直线。该latex-latex
选项latex
在任一端添加箭头。如果您不想在两端都有箭头,只需删除相应的latex
。如果您想让垂直线更长,只需将坐标中的 -6 和 6 替换为更大的值,例如 -15 和 15。
这是一个完整的例子:
\begin{tikzpicture}
\begin{axis}[axis equal image,
xmin=-8, xmax=8,
ymin=-7, ymax=7,
axis lines=middle,
restrict y to domain=-10:10,
enlargelimits={abs=1cm},
axis line style={-latex},
ytick=\empty,
xtick={-3},
%xlabel=$x$,ylabel=$y$,
]
\addplot[domain=-10:10,samples=1000]
{(x^2+5*x+6)/(x^2+2*x-3)};
\addplot[dashed, purple, latex-latex]
coordinates{(1,-6) (1,6)};
\end{axis}
\end{tikzpicture}