我对 LaTeX 还很陌生,我需要绘制一个二维矢量场(就像一个带有矢量箭头的图形。我在网上找不到它。如果可能的话,我想使用 pgfplots。
答案1
如果您不拘泥于此pgfplots
,pst-plot
有一个\psVectorfield
命令可以让它变得非常容易(改编自 pst-plot 文档中的示例):
\documentclass[x11names, border=5pt]{standalone}
\usepackage{pst-plot}
\usepackage{auto-pst-pdf}
\begin{document}
%
%%%%%%%%%%% v(x, y) = =x² + y² - 1
\psset{unit=4cm, arrowinset=0.12}
\begin{pspicture}(-1.2,-1.2)(1.1,1.1)
\psaxes[ticksize=0 4pt,axesstyle=frame,tickstyle=inner,subticks=20,
Ox=-1,Oy=-1](-1,-1)(1,1)
\psset{arrows=->,algebraic}
\psVectorfield[linecolor=DarkOliveGreen3](-0.9,-0.9)(0.9,0.9){ x²+y²-1 }
\end{pspicture}
\end{document}