clear
clc
close all

timespan = [0 10];
init = [2];

[t,y] = ode45(@Funktion1, timespan, init);

figure(2)
hold on 
plot(t,y,'b','LineWidth',2) 
grid on 

