John C. Polking

Since matlab has no natural capability to plot phase portraits for ODEs, it forces users either to write its own code for their visuallizations or a use a special subroutine. The latter was realized by John C. Polking from Rice University, who developed between 1995 and 2003 very friendly subroutines dfield and pplane. Unfortunately, these apps are not compatible with lastest versions of matlab.

To capture the functionality of the traditional PPlane and DField apps, Iourii Kouznetsov (2020) published an updated version dfield9(action,input1,input2,input3) (https://www.mathworks.com/matlabcentral/fileexchange/65886-dfield9-action-input1-input2-input3), matlab Central File Exchange. Start matlab and set the working directory to be the folder into which you downloaded the program. To start dfield simply type dfield9 in the matlab command window. Linux users should enter:

addpath(tempdir)
dfield9

Similar to dfield9, there is also dirfield subroutine for plotting phase portraits of first order ODEs.

Historical Note about John Polking: This is what professor John Polking wrote about himself.

I was born and raised on a farm near the town of Breda in western Iowa. He went to Notre Dame, and then spent three years in the US Navy.

During graduate school at the University of Chicago, I spent some time consulting in industry. I received my PhD in 1966 for a thesis on partial differential equations. My current mathematical interests include partial differential equations and several complex variables.

After two years as an instructor at Brandeis, I came to Rice in 1968. With the exception of a year at the Courant Institute, another at the Institute for Advanced Study, and three years at the National Science Foundation, I have been at Rice since.

Although I retired in June 2004, I retain the rank of Professor Emeritus. I teach one course each spring at Rice. I am also an active member of the Steering Committee for the IAS/Park City Mathematics Institute (PCMI) for whom I edit the Graduate Summer School Lecture Series.

I am also rewriting my textbooks in ordinary differential equaitons, and my computer software for use in differential equations courses.
﹡ ⁎ ✱ ✲ ✳ ✺ ✻ ✼ ✽ ❋

An updated version of Pplane that works on matlab R2018b was prepared by Hugh Harvey. See https://www.mathworks.com/matlabcentral/fileexchange/61636-pplane.
pplane9 is available in a matlab version.

The latest version of phase portrait plotting with matlab was developed by Brian Hong (2021). Phase Plane and Slope Field apps (https://github.com/MathWorks-Teaching-Resources/Phase-Plane-and-Slope-Field/releases/tag/v1.0.0), GitHub.

Tutorial videos that demonstrate how to use the apps are available at the GitHub repository: https://github.com/MathWorks-Teaching-Resources/Phase-Plane-and-Slope-Field We show its application on the following problem:

\[ y' = 3y+2x . \]
When dfield starts it displays the default Setup window

 

  1. Brian Hong (2021). Phase Plane and Slope Field apps (https://github.com/MathWorks-Teaching-Resources/Phase-Plane-and-Slope-Field/releases/tag/v1.0.0)
  2. Iourii Kouznetsov (2020). dfield9(action,input1,input2,input3) (https://www.mathworks.com/matlabcentral/fileexchange/65886-dfield9-action-input1-input2-input3), matlab Central File Exchange.
  3. Using Matlab for First Order ODEs.