Borrar filtros
Borrar filtros

Ideal grid for interpolation based on query points

2 visualizaciones (últimos 30 días)
Tintin Milou
Tintin Milou el 20 de Mayo de 2023
Respondida: Image Analyst el 21 de Mayo de 2023
Hello,
My query points for a 2D interpolation are shown in this scatter plot.
Each of these points has a corresponding function value. It is quite costly to evaluate this function.
So my idea is to only evaluate the function for a small subsets of data points and then interpolate the remaining data points.
My question: Is there an efficient way to set up my grid?
Of course, I could use something like
x = linspace(min(xq(:)),max(xq(:)),10) ;
y = linspace(min(yq(:)),max(yq(:)),10) ;
[X,Y] = meshgrid(x,y) ;
And get something like this
But that does not seem to be the best grid given that some of these gridpoints are not anywhere close to the query points.
Tahnks!

Respuesta aceptada

Image Analyst
Image Analyst el 21 de Mayo de 2023
@Tintin Milou I don't know why you keep forgetting, or refusing, to attach your data. And I don't know why you want to use a subset of your data. A few million points does not seem like an enormous amount of data. After all, a typical digital image from a camera could be 25 million points. Have you tried it and it just takes way too long?
For what it's worth, my demo of scatteredInterpolant is attached.

Más respuestas (0)

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by