Cómo activar InterpolationOrder en un solo eje en ListDensityPlot
Sep 01 2020
Cómo controlar la dirección de InterpolationOrderen este código, me gustaría que fuera a lo 1largo yy a lo 0largox
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]
Respuestas
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]