Interpolation::mixedp
ListInterpolation::mixedp
Interpolation::mixedp ListInterpolation::mixedp
Examples
Basic Examples (1)
The matrices that specify the second derivatives are not symmetric matrices:
sampledata = Flatten[Table[{i, j, {i + j, {0, 0}, {{0, i}, {0, 0}}}}, {i, 3}, {j, 3}], 1]Interpolation[sampledata]This shows valid data with consistent specifications of all partial derivatives.
sampledata = Flatten[Table[{i, j, {i + j, {0, 0}, {{i, 0}, {0, 0}}}}, {i, 3}, {j, 3}], 1]Interpolation[sampledata]Clear the value of sampledata.
Clear[sampledata]