function [a] = rabbits(t)

% [a] = Po*e^(rt) calculates a values of population from a function based on
%                 the time (years) ellapsed.

a = 100*exp(0.09*t)

% end of the function definition