[Home] [Lexikon] [Aufgaben] [Tests] [Kurse] [Begleitmaterial] [Hinweise] [Mitwirkende] [Publikationen] | |
Mathematik-Online-Aufgabensammlung: Lösung zu | |
Interaktive Aufgabe 1529: Gebrochen linerae Interpolation mit Matlab |
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
% rational interpolation x = [1:3]'; y = exp(-x); A = [ones(3,1), x, -x.*y]; c = A\y % plot xp = [0:0.01:4]; yp = (c(1)+c(2)*xp)./(1+c(3)*xp); plot(xp,yp,x,y,'o');
automatisch erstellt am 31. 3. 2010 |