假设您有幂律系统 x'=xy-y,y'=xy-x
如何使用 pst-ode.sty 绘制轨迹和矢量场,比如在 ty 平面中?
答案1
\documentclass{article}
\usepackage{pst-ode,pst-plot}
\begin{document}
\psset{xAxisLabel=$t$,xAxisLabelPos={c,-6ex},yAxisLabelPos={-3ex,c}}
\begin{psgraph}(0,0)(0,0)(-10,1){10cm}{2.5cm}
\pstODEsolve[algebraic]{TY}{0 1}{0.1}{4.5}{100}{0 0.1}{
x[0]*x[1]-x[1] | x[0]*x[1]-x[0]
}
\listplot{TY}
\end{psgraph}
\end{document}
我不知道 x'(0) 和 y'(0) 的参数是什么