akimaspline2 führt eine 2-dimensionale “Matrix zu Matrix”-Interpolation durch.
Returnwert
rmZi ist die interpolierte Matrix an den Stellen rvXi, rvYi.
Parameter
rvX sind die x-Koordinaten der Matrix rmZ.
rvY sind die y-Koordinaten der Matrix rmZ.
rmZ ist eine Matrix.
rvXi sind die Stützstellen in aufsteigender Folge.
rvYi sind die Stützstellen in aufsteigender Folge.
Beispiel
// File created from "script\math\akimaspline2.ic".
def test_akimaspline2()
{
if (version(1) < 5200) return;
m = [0, 0, 0;
0, 1, 0;
0, 0, 0];
x = [0, 0.5, 1]
y = x;
mi = akimaspline2(x, y, m, xi = linspace(0, 1, 50), xi);
plotxyz(xi, xi, mi);
}
test_akimaspline2()
History
| Version | Beschreibung |
|---|---|
| 5.20 | Neu. |
Siehe auch
Überblick Mathematik, akimaspline, fspline2, spline2, interpol2, rspline2
id-1332188