頌歌系統的向量場

頌歌系統的向量場

假設您有頌歌系統 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) 有什麼參數

在此輸入影像描述

相關內容