interpolate_point_matrix_re Function

public pure function interpolate_point_matrix_re(x, y, p) result(r)

Interpolates a matrix function using Catmull-Rom splines.

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), dimension(:) :: x

Variable x

real(kind=wp), intent(in), dimension(:, :, :) :: y

Function y(x)

real(kind=wp), intent(in) :: p

Single point p

Return Value real(kind=wp), dimension(size(y, 1), size(y, 2))

Interpolation y(p)