Previous topic

source

Next topic

SplitPath

This Page

spline2ΒΆ

spline2 executes a 2-dimensional “matrix to matrix” interpolation.

rmZi = spline2(rvX, rvY, rmZ, rvXi, rvYi)

Return Value

rmZi is the interpolated matrix for the rvXi, rvYi coordinates.

Parameters

rvX

rvX is a vector with x-coordinates for the matrix rmZ.

rvY

rvY is a vector with y-coordinates for the matrix rmZ.

rmZ

rmZ is a matrix.

rvXi

rvXi is a vector with x-coordinates for the new matrix rmZi.

rvYi

rvYi is a vector with y-coordinates for the new matrix rmZi.

Example

// File created from "script\math\spline2.ic".

def test_spline2()
{
    if (version(1) < 5200) return;
    m = [0, 0, 0;
         0, 1, 0;
         0, 0, 0];
    x = [0, 0.5, 1]
    y = x;
    mi = spline2(x, y, m, xi = linspace(0, 1, 50), xi);
    plotxyz(xi, xi, mi);
}
test_spline2()

History

Version Description
5.20 New

id-1317806