I am trying to plot the Logistic system using ode45 solver in matlab, removing the initial transient, then re-plotting the result again.
The system is:
dx/dt = N0*x*(1-x/k)
Where:
N0= Growth rate
k= Carrying capacity
This system has two equilibrium point 0 and k.
At 0 the system is unstable and at k the system is stable.