Revision history for Extrapolation


Revision [12400]

Last edited on 2011-08-06 01:06:01 by ToBo
Additions:
[[Octave]]-Beispiel:
{{image url="images/extrapE1.png"}}
%%(matlab)
x=[ 1 3 8 6 12 17 ];
y=[ 4 6 -5 0 -9 -7 ];
M = 100;
%itype = 'cubic';
itype = 'spline';
xi = linspace(min(x), max(x), M);
yi = interp1(x, y, xi, itype);
xe = linspace(0, 20, M);
ye = interp1(x, y, xe, itype, 'extrap');
h=plot(x,y,'o', xe, ye, xi, yi );
ylabel('y')
xlabel('x')
set(h,'markersize',2.5);
grid on
legend('data points','extrapolation','interploation')
%%


Revision [11541]

Edited on 2011-01-28 19:35:49 by ToBo
Additions:
Bei der Extrapolation wird ein möglicher Verlauf einer Funktion außerhalb einer Datenmenge geschätzt.
Deletions:
Bei der Extrapolation werden Datenpunkte außerhalb der Ränder einer Datenmenge geschätzt.


Revision [11537]

Edited on 2011-01-28 19:26:53 by ToBo
Additions:
=====Extrapolation=====
Bei der Extrapolation werden Datenpunkte außerhalb der Ränder einer Datenmenge geschätzt.
Deletions:
=====Titel=====


Revision [11536]

The oldest known version of this page was created on 2011-01-28 19:25:55 by ToBo
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki