% zu Aufgabe 3.2 a):
% grafische Darstellung einer (komplizierten) Funktion

x = 0:0.01:5;
y = log(1+sqrt(x)) .* (x.^(1./(1+x)) + 2*atan(1./(1+exp(x))).*abs(sin(x.^2)));
plot(x,y)
title('Zu Aufgabe 3.2 a)')
