Como ativar InterpolationOrder em apenas um eixo em ListDensityPlot

Sep 01 2020

Como controlar o dirction de InterpolationOrderneste código, gostaria que fosse 1ao longo ye 0ao longox

ListDensityPlot[
 Flatten[ParallelTable[{i/2, j, i j}, {i, 2, 10, 2}, {j, 0, 1.7, 
    0.08}], 1], InterpolationOrder -> {0, 3}, 
 ColorFunction -> (Blend[{White, Blue}, #] &), PlotRange -> All]      

Respostas

1 kglr Sep 01 2020 at 07:29
iF = Interpolation[Flatten[ParallelTable[{i/2 + 1/2, j, i j}, 
      {i, 0, 10, 2}, {j, 0, 1.7, 0.08}], 1], InterpolationOrder -> {0, 1}]; 

DensityPlot[iF[x, y], {x, 1, 5}, {y, 0, 1.7}, 
 ColorFunction -> (Blend[{White, Blue}, #] &), PlotPoints -> 50]