Solve Lotka-Volterra model using SciPy
问题 I have the following Lotka-Volterra model dN1/dt = N1(1-N1-0.7N2) dN2/dt = N2(1-N2-0.3N1) where the 1 and 2 next to N are subscripts. I want to solve this using SciPy and visualize the results. I want to make a plot with N2 on the y axis and N1 on the N1. If you set N1 to zero in the first equation, you get N2 = 1/0.7 and if you set N2 to zero in the second equation, you get N1 = 0.3/1. The two lines are suppose to intersect. How do I do this in Python? I read this tutorial (slides 6 to 16)