% zu Aufgabe 3.2 c)
% Graph der Binomialkoeffizienten, verallgemeinert auf reelle Argumente

[X,Y] = meshgrid(0:0.1:3);
Z = gamma(X+1) ./ (gamma(Y+1) .* gamma(X-Y+1));
surf(X,Y,Z)
title('Zu Aufgabe 3.2 c): Binomialkoeffizienten')
