ode 시스템이 x'=xy-y, y'=xy-x라고 가정합니다.
예를 들어 ty 평면에서 궤적과 벡터필드를 그리려면 pst-ode.sty를 어떻게 사용합니까?
답변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)에 대해 어떤 매개변수가 있는지 모르겠습니다.