Personal Website:
Scott Congreve

Teaching

Download<< Back

function y = logistic(t, x)
% LOGISTIC Right hand side for logistic equation:
%
%  x' = (a - bx)x - c

a = 1;
b = 1;
c = 0;

y = (a-b*x)*x-c;

end