%disp(' Prüfung SS 2000 Aufgabe 6 '); % 26.06.2001 % function ydot=SS00_6f(x,y) %selber Dateiname auch hier!!!! zur Sicherheit!! % ydot=zeros(2,1); % ydot richtig initialisieren ydot(1)=y(2); % y=-y ist die gegebene DGL y1' = y(2) ydot(2)=-x.*y(2)+y(1)+(x.^2+2); % % y'' + xy' - y = x^2+2 % y' = y(2) % y = y(1)