function [ f ] = lotka_volterra( t,x )
% Funktion für die rechte Seite des
% Lotka-Volterra-Systems

% GLEICHUNGEN
% B = alpha*B - beta*B*R
% R = -gamma * R + delta*B*R

global alpha beta gamma delta;
% Parameterzuweisung bitte in solveLgs

% Definiere Vektor mit Funktion für 
% f(1): Wachstumsrate d. Beute
% f(2): Wachstumsrate d. Räuber
f = [ alpha*x(1) - beta*x(1)*x(2);
     -gamma*x(2) + delta*x(1)*x(2)];
 
end

