ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
pm_polation::getInterp Interface Reference

Generate and return the approximate polynomial interpolation value of the input specified point x for the specified method. More...

Detailed Description

Generate and return the approximate polynomial interpolation value of the input specified point x for the specified method.

For polynomial interpolation, the computation relies on the Neville algorithm.

Parameters
[in]method: The input scalar constant that can be,
  1. The scalar constant neimean or a scalar object of type neimean_type implying the use of the average of the func values of the two nearest neighbors of the input queryx smaller and larger than it as the output interp.
  2. The scalar constant neinear or a scalar object of type neinear_type implying the use of the average of the func value of the nearest neighbor of the input queryx as the output interp.
    Note that the nearest neighbor in this case is measured by actual Euclidean distances of neighbors to the input queryx.
  3. The scalar constant neiprev or a scalar object of type neiprev_type implying the use of the func value of the largest abscissa in the input crdx smaller than the input queryx as the output interp.
  4. The scalar constant neinext or a scalar object of type neinext_type implying the use of the func value of the smallest abscissa in the input crdx larger than the input queryx as the output interp.
  5. The scalar constant piwilin or a scalar object of type piwilin_type implying the use of the linear interpolation of the func values of the two crdx points that bracket queryx as the output interp.
    The linear interpolation implemented in this constructor is based on the Lagrange classical formula for linear interpolation.
    Suppose an input query point \(x\) falls between two nodes \(x_i\) and \(x_{i+1}\) with the corresponding function values \(y_i\) and \(y_{i+1}\) and we wish to estimate the corresponding interpolated value \(y(x)\), which can be computed as,

    \begin{equation*} y(x) = \frac {x - x_{i+1}} {x_i - x_{i+1}} y_i + \frac {x - x_{i}} {x_{i+1} - x_{i}} y_{i+1} ~. \end{equation*}

  6. The scalar constant monopol or a scalar object of type monopol_type implying the use of a single polynomial interpolation of highest degree size(crdx) - 1 possible to all pairs of (crdx, func) for computing the output interp.
    The Neville algorithm is used to approximate the polynomial interpolation.
[in]crdx: The input contiguous vector of
  1. type real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128),
containing the set of abscissa in strictly ascending order through which the constructed polynomial must pass.
If needed, the input values for crdx and sortedY can be sorted in ascending order by calling either setSorted() or setSorted().
[in]func: The input contiguous vector of the same type, kind, and size as crdx, containing the set of function values corresponding to the input abscissa crdx through which the constructed polynomial must pass.
[in]queryx: The input scalar or vector of the same type and kind as crdx, containing the abscissa (x-value) of the queryx point.
Returns

interp : The output object of the same type, kind, rank, and shape as queryx, containing the (approximate) interpolated y-value(s) corresponding to the queryx point(s).


Possible calling interfaces

interp = getInterp(method, crdx(1:nsam), func(1:nsam), queryx)
interp(1:nque) = getInterp(method, crdx(1:nsam), func(1:nsam), queryx(1:nque))
Generate and return the approximate polynomial interpolation value of the input specified point x for...
This module contains procedures and data types for interpolation of finite samples of data.
Warning
The condition size(crdx) == size(func) must hold for the corresponding input arguments.
The condition all([minval(crdx, 1) <= queryx .and. queryx <= maxval(crdx, 1)) must hold for the corresponding input arguments.
The condition isAscendingAll(crdx) .or. same_type_as(method, monopol_type()) must hold for the corresponding input arguments.
These conditions are verified only if the library is built with the preprocessor macro CHECK_ENABLED=1.
The pure procedure(s) documented herein become impure when the ParaMonte library is compiled with preprocessor macro CHECK_ENABLED=1.
By default, these procedures are pure in release build and impure in debug and testing builds.
See also
getExtrap
setExtrap
getInterp
setInterp
pm_sampleQuan
pm_arraySort
pm_quadRomb


Example usage

1program example
2
3 use pm_kind, only: SK, IK, LK
6 use pm_io, only: getErrTableWrite
7 use pm_io, only: display_type
8
9 implicit none
10
11 type(display_type) :: disp
12 integer(IK) :: itry, ntry = 5
13 integer(IK) :: dim, isam, ndim, nsam
14 disp = display_type(file = "main.out.F90")
15
16 call disp%skip()
17 call disp%show("!%%%%%%%%%%%%%%%%%")
18 call disp%show("!1D interpolation.")
19 call disp%show("!%%%%%%%%%%%%%%%%%")
20 call disp%skip()
21
22 block
23 use pm_kind, only: RKG => RKS ! all processor kinds are supported.
24 use pm_mathConst, only: PI_RKH => PI
25 real(RKG), parameter :: PI = PI_RKH
26 real(RKG), allocatable :: crdx(:), func(:), queryx(:), interp(:)
27 integer(IK) :: ncrd, nquery
28 call disp%skip()
29 call disp%show("ncrd = 9; nquery = 33")
30 ncrd = 9; nquery = 33
31 call disp%show("crdx = getLinSpace(0._RKG, 2 * PI, ncrd)")
32 crdx = getLinSpace(0._RKG, 2 * PI, ncrd)
33 call disp%show("crdx")
34 call disp%show( crdx )
35 call disp%show("func = sin(crdx)")
36 func = sin(crdx)
37 call disp%show("func")
38 call disp%show( func )
39 call disp%show("queryx = getLinSpace(0._RKG, 2 * PI, nquery)")
40 queryx = getLinSpace(0._RKG, 2 * PI, nquery)
41 call disp%show("queryx")
42 call disp%show( queryx )
43 call disp%skip()
44 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
45 call disp%show("!1D mean neighbors interpolation.")
46 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
47 call disp%skip()
48 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neimean.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
49 if (0 /= getErrTableWrite(SK_'getInterp.neimean.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
50 call disp%show("interp = getInterp(neimean, crdx, func, queryx)")
51 interp = getInterp(neimean, crdx, func, queryx)
52 call disp%show("interp")
53 call disp%show( interp )
54 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neimean.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
55 if (0 /= getErrTableWrite(SK_'getInterp.neimean.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
56 call disp%skip()
57 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
58 call disp%show("!1D nearest neighbor interpolation.")
59 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
60 call disp%skip()
61 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neinear.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
62 if (0 /= getErrTableWrite(SK_'getInterp.neinear.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
63 call disp%show("interp = getInterp(neinear, crdx, func, queryx)")
64 interp = getInterp(neinear, crdx, func, queryx)
65 call disp%show("interp")
66 call disp%show( interp )
67 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neinear.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
68 if (0 /= getErrTableWrite(SK_'getInterp.neinear.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
69 call disp%skip()
70 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
71 call disp%show("!1D next neighbor interpolation.")
72 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
73 call disp%skip()
74 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neinext.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
75 if (0 /= getErrTableWrite(SK_'getInterp.neinext.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
76 call disp%show("interp = getInterp(neinext, crdx, func, queryx)")
77 interp = getInterp(neinext, crdx, func, queryx)
78 call disp%show("interp")
79 call disp%show( interp )
80 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neinext.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
81 if (0 /= getErrTableWrite(SK_'getInterp.neinext.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
82 call disp%skip()
83 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
84 call disp%show("!1D previous neighbor interpolation.")
85 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
86 call disp%skip()
87 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neiprev.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
88 if (0 /= getErrTableWrite(SK_'getInterp.neiprev.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
89 call disp%show("interp = getInterp(neiprev, crdx, func, queryx)")
90 interp = getInterp(neiprev, crdx, func, queryx)
91 call disp%show("interp")
92 call disp%show( interp )
93 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.neiprev.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
94 if (0 /= getErrTableWrite(SK_'getInterp.neiprev.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
95 call disp%skip()
96 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
97 call disp%show("!1D piecewise linear interpolation.")
98 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
99 call disp%skip()
100 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.piwilin.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
101 if (0 /= getErrTableWrite(SK_'getInterp.piwilin.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
102 call disp%show("interp = getInterp(piwilin, crdx, func, queryx)")
103 interp = getInterp(piwilin, crdx, func, queryx)
104 call disp%show("interp")
105 call disp%show( interp )
106 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.piwilin.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
107 if (0 /= getErrTableWrite(SK_'getInterp.piwilin.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
108 call disp%skip()
109 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
110 call disp%show("!1D single polynomial interpolation.")
111 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
112 call disp%skip()
113 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.monopol.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
114 if (0 /= getErrTableWrite(SK_'getInterp.monopol.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
115 call disp%show("interp = getInterp(monopol, crdx, func, queryx)")
116 interp = getInterp(monopol, crdx, func, queryx)
117 call disp%show("interp")
118 call disp%show( interp )
119 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.monopol.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
120 if (0 /= getErrTableWrite(SK_'getInterp.monopol.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
121 call disp%skip()
122 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
123 call disp%show("!1D single polynomial interpolation showing Runge effect.")
124 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
125 call disp%skip()
126 block
127 use pm_distNorm, only: getNormLogPDF
128 call disp%show("ncrd = 9; nquery = 50 * ncrd")
129 ncrd = 9; nquery = 50 * ncrd
130 call disp%show("crdx = getLinSpace(-5., +5., ncrd)")
131 crdx = getLinSpace(-5., +5., ncrd)
132 call disp%show("crdx")
133 call disp%show( crdx )
134 call disp%show("func = exp(getNormLogPDF(crdx))")
135 func = exp(getNormLogPDF(crdx))
136 call disp%show("func")
137 call disp%show( func )
138 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.rungeEffect.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'")
139 if (0 /= getErrTableWrite(SK_'getInterp.rungeEffect.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
140 call disp%show("queryx = getLinSpace(minval(crdx, 1), maxval(crdx, 1), nquery)")
141 queryx = getLinSpace(minval(crdx, 1), maxval(crdx, 1), nquery)
142 call disp%show("queryx")
143 call disp%show( queryx )
144 call disp%show("interp = getInterp(monopol, crdx, func, queryx)")
145 interp = getInterp(monopol, crdx, func, queryx)
146 call disp%show("interp")
147 call disp%show( interp )
148 call disp%show("if (0 /= getErrTableWrite(SK_'getInterp.rungeEffect.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'")
149 if (0 /= getErrTableWrite(SK_'getInterp.rungeEffect.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
150 call disp%skip()
151 end block
152 end block
153
154end program example
Generate count evenly spaced points over the interval [x1, x2] if x1 < x2, or [x2,...
Generate the natural logarithm of probability density function (PDF) of the univariate Normal distrib...
Generate and return the iostat code resulting from writing the input table of rank 1 or 2 to the spec...
Definition: pm_io.F90:5940
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11726
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11508
This module contains procedures and generic interfaces for generating arrays with linear or logarithm...
This module contains classes and procedures for computing various statistical quantities related to t...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
Definition: pm_io.F90:252
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
Definition: pm_io.F90:11393
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
Definition: pm_kind.F90:268
integer, parameter LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
Definition: pm_kind.F90:541
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
Definition: pm_kind.F90:540
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
Definition: pm_kind.F90:539
integer, parameter RKS
The single-precision real kind in Fortran mode. On most platforms, this is an 32-bit real kind.
Definition: pm_kind.F90:567
This module contains relevant mathematical constants.
real(RKB), parameter PI
The scalar real constant of kind with highest available precision RKB representing the irrational num...
type(piwilin_type), parameter piwilin
type(neiprev_type), parameter neiprev
type(neinext_type), parameter neinext
type(monopol_type), parameter monopol
type(neinear_type), parameter neinear
type(neimean_type), parameter neimean
Generate and return an object of type display_type.
Definition: pm_io.F90:10282

Example Unix compile command via Intel ifort compiler
1#!/usr/bin/env sh
2rm main.exe
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example Windows Batch compile command via Intel ifort compiler
1del main.exe
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
4main.exe

Example Unix / MinGW compile command via GNU gfortran compiler
1#!/usr/bin/env sh
2rm main.exe
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example output
1
2!%%%%%%%%%%%%%%%%%
3!1D interpolation.
4!%%%%%%%%%%%%%%%%%
5
6
7ncrd = 9; nquery = 33
8crdx = getLinSpace(0._RKG, 2 * PI, ncrd)
9crdx
10+0.00000000, +0.785398185, +1.57079637, +2.35619450, +3.14159274, +3.92699099, +4.71238899, +5.49778748, +6.28318548
11func = sin(crdx)
12func
13+0.00000000, +0.707106769, +1.00000000, +0.707106769, -0.874227766E-7, -0.707106888, -1.00000000, -0.707106531, +0.174845553E-6
14queryx = getLinSpace(0._RKG, 2 * PI, nquery)
15queryx
16+0.00000000, +0.196349546, +0.392699093, +0.589048624, +0.785398185, +0.981747746, +1.17809725, +1.37444687, +1.57079637, +1.76714587, +1.96349549, +2.15984511, +2.35619450, +2.55254412, +2.74889374, +2.94524312, +3.14159274, +3.33794236, +3.53429174, +3.73064137, +3.92699099, +4.12334061, +4.31969023, +4.51603937, +4.71238899, +4.90873861, +5.10508823, +5.30143785, +5.49778748, +5.69413662, +5.89048624, +6.08683586, +6.28318548
17
18!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
19!1D mean neighbors interpolation.
20!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
21
22if (0 /= getErrTableWrite(SK_'getInterp.neimean.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
23interp = getInterp(neimean, crdx, func, queryx)
24interp
25+0.00000000, +0.353553385, +0.353553385, +0.353553385, +0.707106769, +0.853553414, +0.853553414, +0.853553414, +1.00000000, +0.853553414, +0.853553414, +0.853553414, +0.707106769, +0.353553355, +0.353553355, +0.353553355, -0.874227766E-7, -0.353553474, -0.353553474, -0.353553474, -0.707106888, -0.853553414, -0.853553414, -0.853553414, -1.00000000, -0.853553295, -0.853553295, -0.853553295, -0.707106531, -0.353553176, -0.353553176, -0.353553176, +0.174845553E-6
26if (0 /= getErrTableWrite(SK_'getInterp.neimean.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
27
28!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29!1D nearest neighbor interpolation.
30!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31
32if (0 /= getErrTableWrite(SK_'getInterp.neinear.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
33interp = getInterp(neinear, crdx, func, queryx)
34interp
35+0.00000000, +0.00000000, +0.707106769, +0.707106769, +0.707106769, +0.707106769, +0.707106769, +1.00000000, +1.00000000, +1.00000000, +0.707106769, +0.707106769, +0.707106769, +0.707106769, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.707106888, -0.707106888, -0.707106888, -1.00000000, -1.00000000, -1.00000000, -1.00000000, -0.707106531, -0.707106531, -0.707106531, -0.707106531, -0.707106531, +0.174845553E-6, +0.174845553E-6
36if (0 /= getErrTableWrite(SK_'getInterp.neinear.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
37
38!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39!1D next neighbor interpolation.
40!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41
42if (0 /= getErrTableWrite(SK_'getInterp.neinext.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
43interp = getInterp(neinext, crdx, func, queryx)
44interp
45+0.00000000, +0.707106769, +0.707106769, +0.707106769, +0.707106769, +1.00000000, +1.00000000, +1.00000000, +1.00000000, +0.707106769, +0.707106769, +0.707106769, +0.707106769, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.707106888, -0.707106888, -0.707106888, -0.707106888, -1.00000000, -1.00000000, -1.00000000, -1.00000000, -0.707106531, -0.707106531, -0.707106531, -0.707106531, +0.174845553E-6, +0.174845553E-6, +0.174845553E-6, +0.174845553E-6
46if (0 /= getErrTableWrite(SK_'getInterp.neinext.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
47
48!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49!1D previous neighbor interpolation.
50!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51
52if (0 /= getErrTableWrite(SK_'getInterp.neiprev.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
53interp = getInterp(neiprev, crdx, func, queryx)
54interp
55+0.00000000, +0.00000000, +0.00000000, +0.00000000, +0.707106769, +0.707106769, +0.707106769, +0.707106769, +1.00000000, +1.00000000, +1.00000000, +1.00000000, +0.707106769, +0.707106769, +0.707106769, +0.707106769, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.874227766E-7, -0.707106888, -0.707106888, -0.707106888, -0.707106888, -1.00000000, -1.00000000, -1.00000000, -1.00000000, -0.707106531, -0.707106531, -0.707106531, -0.707106531, +0.174845553E-6
56if (0 /= getErrTableWrite(SK_'getInterp.neiprev.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
57
58!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59!1D piecewise linear interpolation.
60!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
61
62if (0 /= getErrTableWrite(SK_'getInterp.piwilin.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
63interp = getInterp(piwilin, crdx, func, queryx)
64interp
65+0.00000000, +0.176776692, +0.353553385, +0.530330062, +0.707106769, +0.780330062, +0.853553355, +0.926776707, +1.00000000, +0.926776707, +0.853553414, +0.780330062, +0.707106769, +0.530330002, +0.353553236, +0.176776677, -0.874227766E-7, -0.176776841, -0.353553355, -0.530330122, -0.707106888, -0.780330181, -0.853553534, -0.926776707, -1.00000000, -0.926776648, -0.853553295, -0.780329883, -0.707106531, -0.530330181, -0.353553414, -0.176776618, +0.174845553E-6
66if (0 /= getErrTableWrite(SK_'getInterp.piwilin.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
67
68!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
69!1D single polynomial interpolation.
70!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71
72if (0 /= getErrTableWrite(SK_'getInterp.monopol.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
73interp = getInterp(monopol, crdx, func, queryx)
74interp
75+0.00000000, +0.196270034, +0.383659512, +0.556001663, +0.707106769, +0.831272066, +0.923677325, +0.980677783, +1.00000000, +0.980852842, +0.923959076, +0.831517816, +0.707106769, +0.555531383, +0.382632047, +0.195055515, -0.874227766E-7, -0.195055693, -0.382632226, -0.555531502, -0.707106888, -0.831518054, -0.923959255, -0.980852902, -1.00000000, -0.980677783, -0.923677325, -0.831271827, -0.707106531, -0.556001723, -0.383659661, -0.196270034, +0.174845553E-6
76if (0 /= getErrTableWrite(SK_'getInterp.monopol.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
77
78!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79!1D single polynomial interpolation showing Runge effect.
80!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81
82ncrd = 9; nquery = 50 * ncrd
83crdx = getLinSpace(-5., +5., ncrd)
84crdx
85-5.00000000, -3.75000000, -2.50000000, -1.25000000, +0.00000000, +1.25000000, +2.50000000, +3.75000000, +5.00000000
86func = exp(getNormLogPDF(crdx))
87func
88+0.148671938E-5, +0.352595642E-3, +0.175282992E-1, +0.182649091, +0.398942292, +0.182649091, +0.175282992E-1, +0.352595642E-3, +0.148671938E-5
89if (0 /= getErrTableWrite(SK_'getInterp.rungeEffect.crd.txt', reshape([crdx, func], [ncrd, 2_IK]), header = SK_'crdx,func')) error stop 'interpolation node outputting failed.'
90queryx = getLinSpace(minval(crdx, 1), maxval(crdx, 1), nquery)
91queryx
92-5.00000000, -4.97772837, -4.95545673, -4.93318462, -4.91091299, -4.88864136, -4.86636972, -4.84409809, -4.82182646, -4.79955435, -4.77728271, -4.75501108, -4.73273945, -4.71046782, -4.68819618, -4.66592407, -4.64365244, -4.62138081, -4.59910917, -4.57683754, -4.55456591, -4.53229380, -4.51002216, -4.48775053, -4.46547890, -4.44320726, -4.42093563, -4.39866352, -4.37639189, -4.35412025, -4.33184862, -4.30957699, -4.28730488, -4.26503325, -4.24276161, -4.22048998, -4.19821835, -4.17594671, -4.15367508, -4.13140297, -4.10913134, -4.08685970, -4.06458807, -4.04231644, -4.02004433, -3.99777269, -3.97550106, -3.95322943, -3.93095779, -3.90868592, -3.88641429, -3.86414242, -3.84187078, -3.81959915, -3.79732752, -3.77505565, -3.75278401, -3.73051214, -3.70824051, -3.68596888, -3.66369724, -3.64142537, -3.61915350, -3.59688187, -3.57461023, -3.55233860, -3.53006697, -3.50779510, -3.48552322, -3.46325159, -3.44097996, -3.41870832, -3.39643645, -3.37416482, -3.35189295, -3.32962132, -3.30734968, -3.28507805, -3.26280618, -3.24053454, -3.21826267, -3.19599104, -3.17371941, -3.15144777, -3.12917590, -3.10690427, -3.08463240, -3.06236076, -3.04008913, -3.01781750, -2.99554563, -2.97327399, -2.95100212, -2.92873049, -2.90645885, -2.88418698, -2.86191535, -2.83964372, -2.81737185, -2.79510021, -2.77282858, -2.75055671, -2.72828507, -2.70601344, -2.68374157, -2.66146994, -2.63919830, -2.61692643, -2.59465480, -2.57238317, -2.55011129, -2.52783966, -2.50556803, -2.48329616, -2.46102452, -2.43875265, -2.41648102, -2.39420938, -2.37193751, -2.34966588, -2.32739425, -2.30512238, -2.28285074, -2.26057911, -2.23830724, -2.21603560, -2.19376397, -2.17149210, -2.14922047, -2.12694883, -2.10467696, -2.08240533, -2.06013370, -2.03786182, -2.01559019, -1.99331856, -1.97104669, -1.94877505, -1.92650342, -1.90423155, -1.88195992, -1.85968828, -1.83741641, -1.81514478, -1.79287291, -1.77060127, -1.74832964, -1.72605777, -1.70378613, -1.68151450, -1.65924263, -1.63697100, -1.61469936, -1.59242749, -1.57015586, -1.54788423, -1.52561235, -1.50334072, -1.48106909, -1.45879722, -1.43652558, -1.41425395, -1.39198208, -1.36971045, -1.34743881, -1.32516694, -1.30289531, -1.28062367, -1.25835180, -1.23608017, -1.21380854, -1.19153666, -1.16926503, -1.14699340, -1.12472153, -1.10244989, -1.08017826, -1.05790639, -1.03563476, -1.01336288, -0.991091251, -0.968819618, -0.946547985, -0.924276352, -0.902004242, -0.879732609, -0.857460976, -0.835189342, -0.812917709, -0.790646076, -0.768373966, -0.746102333, -0.723830700, -0.701559067, -0.679287434, -0.657015324, -0.634743690, -0.612472057, -0.590200424, -0.567928791, -0.545657158, -0.523385048, -0.501113415, -0.478841782, -0.456570148, -0.434298515, -0.412026882, -0.389754772, -0.367483139, -0.345211506, -0.322939873, -0.300668240, -0.278396606, -0.256124496, -0.233852863, -0.211581230, -0.189309597, -0.167037964, -0.144766331, -0.122494221, -0.100222588, -0.779509544E-1, -0.556793213E-1, -0.334076881E-1, -0.111360550E-1, +0.111360550E-1, +0.334076881E-1, +0.556793213E-1, +0.779509544E-1, +0.100222588, +0.122494698, +0.144766331, +0.167037964, +0.189309597, +0.211581230, +0.233852863, +0.256124973, +0.278396606, +0.300668240, +0.322939873, +0.345211506, +0.367483139, +0.389755249, +0.412026882, +0.434298515, +0.456570148, +0.478841782, +0.501113415, +0.523385525, +0.545657158, +0.567928791, +0.590200424, +0.612472057, +0.634743690, +0.657015800, +0.679287434, +0.701559067, +0.723830700, +0.746102333, +0.768374443, +0.790646076, +0.812917709, +0.835189342, +0.857460976, +0.879732609, +0.902004719, +0.924276352, +0.946547985, +0.968819618, +0.991091251, +1.01336288, +1.03563499, +1.05790663, +1.08017826, +1.10244989, +1.12472153, +1.14699316, +1.16926527, +1.19153690, +1.21380854, +1.23608017, +1.25835180, +1.28062344, +1.30289555, +1.32516718, +1.34743881, +1.36971045, +1.39198208, +1.41425419, +1.43652582, +1.45879745, +1.48106909, +1.50334072, +1.52561235, +1.54788446, +1.57015610, +1.59242773, +1.61469936, +1.63697100, +1.65924263, +1.68151474, +1.70378637, +1.72605801, +1.74832964, +1.77060127, +1.79287291, +1.81514502, +1.83741665, +1.85968828, +1.88195992, +1.90423155, +1.92650318, +1.94877529, +1.97104692, +1.99331856, +2.01559019, +2.03786182, +2.06013346, +2.08240557, +2.10467720, +2.12694883, +2.14922047, +2.17149210, +2.19376421, +2.21603584, +2.23830748, +2.26057911, +2.28285074, +2.30512238, +2.32739449, +2.34966612, +2.37193775, +2.39420938, +2.41648102, +2.43875265, +2.46102476, +2.48329639, +2.50556803, +2.52783966, +2.55011129, +2.57238293, +2.59465504, +2.61692667, +2.63919830, +2.66146994, +2.68374157, +2.70601320, +2.72828531, +2.75055695, +2.77282858, +2.79510021, +2.81737185, +2.83964348, +2.86191559, +2.88418722, +2.90645885, +2.92873049, +2.95100212, +2.97327423, +2.99554586, +3.01781750, +3.04008961, +3.06236076, +3.08463287, +3.10690403, +3.12917614, +3.15144730, +3.17371941, +3.19599152, +3.21826267, +3.24053478, +3.26280594, +3.28507805, +3.30735016, +3.32962132, +3.35189342, +3.37416458, +3.39643669, +3.41870785, +3.44097996, +3.46325207, +3.48552322, +3.50779533, +3.53006649, +3.55233860, +3.57461071, +3.59688187, +3.61915398, +3.64142513, +3.66369724, +3.68596935, +3.70824051, +3.73051262, +3.75278378, +3.77505589, +3.79732704, +3.81959915, +3.84187126, +3.86414242, +3.88641453, +3.90868568, +3.93095779, +3.95322990, +3.97550106, +3.99777317, +4.02004433, +4.04231644, +4.06458759, +4.08685970, +4.10913181, +4.13140297, +4.15367508, +4.17594624, +4.19821835, +4.22049046, +4.24276161, +4.26503372, +4.28730488, +4.30957699, +4.33184910, +4.35412025, +4.37639236, +4.39866352, +4.42093563, +4.44320679, +4.46547890, +4.48775101, +4.51002216, +4.53229427, +4.55456543, +4.57683754, +4.59910965, +4.62138081, +4.64365292, +4.66592407, +4.68819618, +4.71046734, +4.73273945, +4.75501156, +4.77728271, +4.79955482, +4.82182598, +4.84409809, +4.86637020, +4.88864136, +4.91091347, +4.93318462, +4.95545673, +4.97772789, +5.00000000
93interp = getInterp(monopol, crdx, func, queryx)
94interp
95+0.148671938E-5, -0.315015167E-1, -0.601745024E-1, -0.861645862E-1, -0.109612145, -0.130654246, -0.149422556, -0.166043878, -0.180640548, -0.193330437, -0.204226360, -0.213437706, -0.221069276, -0.227221802, -0.231992036, -0.235473037, -0.237753779, -0.238919765, -0.239053071, -0.238231897, -0.236531466, -0.234023437, -0.230776504, -0.226856112, -0.222324669, -0.217241764, -0.211664021, -0.205645263, -0.199237019, -0.192487717, -0.185443670, -0.178148419, -0.170643091, -0.162966967, -0.155156970, -0.147247672, -0.139271557, -0.131259248, -0.123239413, -0.115238659, -0.107282206, -0.993932337E-1, -0.915930718E-1, -0.839017183E-1, -0.763373747E-1, -0.689172000E-1, -0.616563670E-1, -0.545688942E-1, -0.476673916E-1, -0.409631878E-1, -0.344665423E-1, -0.281862356E-1, -0.221302547E-1, -0.163052194E-1, -0.107168341E-1, -0.536973402E-2, -0.267778174E-3, +0.458629709E-2, +0.919039920E-2, +0.135434233E-1, +0.176449679E-1, +0.214954242E-1, +0.250957906E-1, +0.284477454E-1, +0.315536484E-1, +0.344164334E-1, +0.370395482E-1, +0.394270197E-1, +0.415833071E-1, +0.435133055E-1, +0.452223904E-1, +0.467163473E-1, +0.480012372E-1, +0.490835458E-1, +0.499700010E-1, +0.506676510E-1, +0.511837713E-1, +0.515259132E-1, +0.517017841E-1, +0.517192855E-1, +0.515864864E-1, +0.513115898E-1, +0.509029366E-1, +0.503689274E-1, +0.497180447E-1, +0.489588827E-1, +0.480999388E-1, +0.471498966E-1, +0.461173803E-1, +0.450109467E-1, +0.438391864E-1, +0.426105559E-1, +0.413336419E-1, +0.400168225E-1, +0.386683345E-1, +0.372964628E-1, +0.359093137E-1, +0.345148705E-1, +0.331209451E-1, +0.317353420E-1, +0.303655714E-1, +0.290190466E-1, +0.277030393E-1, +0.264245756E-1, +0.251905490E-1, +0.240076259E-1, +0.228823330E-1, +0.218209103E-1, +0.208294578E-1, +0.199138392E-1, +0.190796666E-1, +0.183323752E-1, +0.176771432E-1, +0.171189085E-1, +0.166624114E-1, +0.163121074E-1, +0.160722565E-1, +0.159468334E-1, +0.159395952E-1, +0.160540491E-1, +0.162934419E-1, +0.166607983E-1, +0.171588659E-1, +0.177901648E-1, +0.185569618E-1, +0.194612779E-1, +0.205048546E-1, +0.216892809E-1, +0.230157692E-1, +0.244854074E-1, +0.260990076E-1, +0.278570615E-1, +0.297599584E-1, +0.318077914E-1, +0.340003893E-1, +0.363374092E-1, +0.388182811E-1, +0.414421484E-1, +0.442080200E-1, +0.471146777E-1, +0.501606278E-1, +0.533442348E-1, +0.566636771E-1, +0.601168498E-1, +0.637015849E-1, +0.674153790E-1, +0.712556392E-1, +0.752196759E-1, +0.793043748E-1, +0.835067332E-1, +0.878234506E-1, +0.922510400E-1, +0.967859104E-1, +0.101424426, +0.106162593, +0.110996455, +0.115921915, +0.120934658, +0.126030326, +0.131204531, +0.136452526, +0.141769737, +0.147151440, +0.152592674, +0.158088535, +0.163634077, +0.169224173, +0.174853653, +0.180517435, +0.186210185, +0.191926658, +0.197661579, +0.203409538, +0.209165186, +0.214923218, +0.220678106, +0.226424575, +0.232157171, +0.237870425, +0.243559122, +0.249217704, +0.254840940, +0.260423481, +0.265960187, +0.271445632, +0.276874691, +0.282242179, +0.287543118, +0.292772442, +0.297925085, +0.302996427, +0.307981372, +0.312875330, +0.317673564, +0.322371632, +0.326965183, +0.331449598, +0.335820675, +0.340074390, +0.344206691, +0.348213583, +0.352091342, +0.355836183, +0.359444618, +0.362913340, +0.366238832, +0.369417995, +0.372448087, +0.375325859, +0.378048807, +0.380614251, +0.383019835, +0.385263234, +0.387342423, +0.389255166, +0.390999913, +0.392574966, +0.393978775, +0.395209998, +0.396267533, +0.397150308, +0.397857577, +0.398388594, +0.398742855, +0.398920149, +0.398920119, +0.398742944, +0.398388624, +0.397857606, +0.397150338, +0.396267503, +0.395209968, +0.393978715, +0.392574966, +0.390999943, +0.389255196, +0.387342304, +0.385263175, +0.383019835, +0.380614221, +0.378048778, +0.375325859, +0.372447968, +0.369418055, +0.366238743, +0.362913251, +0.359444648, +0.355836213, +0.352091253, +0.348213524, +0.344206661, +0.340074390, +0.335820735, +0.331449598, +0.326965094, +0.322371662, +0.317673594, +0.312875301, +0.307981342, +0.302996337, +0.297925055, +0.292772412, +0.287543118, +0.282242209, +0.276874661, +0.271445513, +0.265960097, +0.260423481, +0.254840910, +0.249217704, +0.243559122, +0.237870350, +0.232157126, +0.226424560, +0.220678151, +0.214923233, +0.209165245, +0.203409493, +0.197661519, +0.191926643, +0.186210170, +0.180517465, +0.174853712, +0.169224128, +0.163634017, +0.158088550, +0.152592674, +0.147151470, +0.141769692, +0.136452466, +0.131204471, +0.126030326, +0.120934658, +0.115921922, +0.110996395, +0.106162533, +0.101424381, +0.967859104E-1, +0.922510251E-1, +0.878234506E-1, +0.835066810E-1, +0.793043375E-1, +0.752196237E-1, +0.712556317E-1, +0.674153864E-1, +0.637015775E-1, +0.601168163E-1, +0.566636361E-1, +0.533442721E-1, +0.501606315E-1, +0.471146777E-1, +0.442080498E-1, +0.414421260E-1, +0.388182625E-1, +0.363374054E-1, +0.340003930E-1, +0.318077877E-1, +0.297599752E-1, +0.278570391E-1, +0.260989666E-1, +0.244854093E-1, +0.230157655E-1, +0.216892716E-1, +0.205048546E-1, +0.194612537E-1, +0.185569599E-1, +0.177901648E-1, +0.171588641E-1, +0.166607983E-1, +0.162934400E-1, +0.160540435E-1, +0.159395933E-1, +0.159468316E-1, +0.160722584E-1, +0.163121112E-1, +0.166624170E-1, +0.171189159E-1, +0.176771432E-1, +0.183323752E-1, +0.190796647E-1, +0.199138336E-1, +0.208294727E-1, +0.218209140E-1, +0.228823368E-1, +0.240076296E-1, +0.251905434E-1, +0.264245756E-1, +0.277030505E-1, +0.290190652E-1, +0.303655677E-1, +0.317353457E-1, +0.331209153E-1, +0.345148556E-1, +0.359093435E-1, +0.372964889E-1, +0.386683270E-1, +0.400168225E-1, +0.413336679E-1, +0.426105782E-1, +0.438392088E-1, +0.450109541E-1, +0.461174771E-1, +0.471498594E-1, +0.480999723E-1, +0.489588752E-1, +0.497180298E-1, +0.503689051E-1, +0.509029403E-1, +0.513116047E-1, +0.515864789E-1, +0.517192781E-1, +0.517017841E-1, +0.515259206E-1, +0.511837751E-1, +0.506676584E-1, +0.499699861E-1, +0.490835458E-1, +0.480012447E-1, +0.467163771E-1, +0.452224016E-1, +0.435132831E-1, +0.415832996E-1, +0.394269750E-1, +0.370396078E-1, +0.344164297E-1, +0.315535888E-1, +0.284477398E-1, +0.250957161E-1, +0.214954615E-1, +0.176449753E-1, +0.135433301E-1, +0.919040293E-2, +0.458619557E-2, -0.267725205E-3, -0.536979176E-2, -0.107167251E-1, -0.163052157E-1, -0.221303776E-1, -0.281862393E-1, -0.344666094E-1, -0.409630984E-1, -0.476673990E-1, -0.545690358E-1, -0.616563857E-1, -0.689173341E-1, -0.763373673E-1, -0.839017034E-1, -0.915929079E-1, -0.993933082E-1, -0.107282400, -0.115238607, -0.123239458, -0.131259084, -0.139271617, -0.147247791, -0.155156970, -0.162967205, -0.170643091, -0.178148389, -0.185443878, -0.192487597, -0.199237138, -0.205645263, -0.211664021, -0.217241615, -0.222324669, -0.226856202, -0.230776504, -0.234023511, -0.236531407, -0.238231897, -0.239053056, -0.238919765, -0.237753719, -0.235473037, -0.231992036, -0.227221891, -0.221069276, -0.213437587, -0.204226360, -0.193330169, -0.180640817, -0.166043878, -0.149422184, -0.130654246, -0.109611660, -0.861645862E-1, -0.601745024E-1, -0.315021649E-1, +0.148671938E-5
96if (0 /= getErrTableWrite(SK_'getInterp.rungeEffect.interp.txt', reshape([queryx, interp], [nquery, 2_IK]), header = SK_'queryx,interp')) error stop 'interpolation outputting failed.'
97
98

Postprocessing of the example output
1#!/usr/bin/env python
2
3import matplotlib.pyplot as plt
4import pandas as pd
5import numpy as np
6import glob
7import sys
8
9linewidth = 2
10fontsize = 17
11
12for kind in ["neimean", "neinear", "neinext", "neiprev", "piwilin", "monopol", "rungeEffect"]:
13
14 crd = pd.read_csv(glob.glob("*."+kind+".crd.txt")[0], delimiter = ",")
15 pattern = "*."+kind+".interp.txt"
16 fileList = glob.glob(pattern)
17
18 for file in fileList:
19
20 df = pd.read_csv(file, delimiter = ",")
21
22 # start with a square Figure
23 fig = plt.figure(figsize = (8, 6))
24 ax = plt.subplot(1,1,1)
25
26 ax.scatter ( df.values[:, 0]
27 , df.values[:,1]
28 , zorder = 1000
29 , c = "black"
30 , s = 8
31 )
32 ax.scatter ( crd.values[:, 0]
33 , crd.values[:,1]
34 , zorder = 1000
35 , c = "red"
36 , s = 20
37 )
38
39 plt.minorticks_on()
40 ax.set_xlabel("X", fontsize = 17)
41 ax.set_ylabel("Y", fontsize = 17)
42 plt.grid(visible = True, which = "both", axis = "both", color = "0.85", linestyle = "-")
43 ax.tick_params(axis = "x", which = "minor")
44 ax.tick_params(axis = "y", which = "minor")
45 ax.legend([file.split(".")[-3], "nodes"], fontsize = fontsize)
46
47 plt.tight_layout()
48 plt.savefig(file.replace(".txt",".png"))

Visualization of the example output
Test:
test_pm_polation


Final Remarks


If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.

  1. If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
  2. If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.

This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.

Author:
Amir Shahmoradi, September 1, 2017, 12:00 AM, Institute for Computational Engineering and Sciences (ICES), The University of Texas at Austin

Definition at line 492 of file pm_polation.F90.


The documentation for this interface was generated from the following file: