Effacer les filtres
Effacer les filtres

Interpolation between three sets of data

12 vues (au cours des 30 derniers jours)
Sami Al-Abbar
Sami Al-Abbar le 6 Mai 2015
Commenté : Sami Al-Abbar le 7 Mai 2015
I have three Arrays(Column Vector?) of Speed vs. Position for three different voltages (9V, 13.5V and 16V). Each array contains a speed for every position (2387 values). I would like to make a lookup table with the position and voltage as inputs and the speed value as output. For that, I would like to interpolate the speed vs. position arrays for the voltages in between the three that I already have. That should result in speed vs position arrays for 9v, 10v, 11v - 16v. Is this possible?
The interpolation methods in the help section only show how to interpolate along the x-axis (in this case the Position values) while in my case, I have three sets of data separated by voltage and want to interpolate in between these sets.
Perhaps a multidimensional array could be used?
Any help would be greatly appreciated.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 6 Mai 2015
Modifié(e) : Andrei Bobrov le 6 Mai 2015
Let your data S (Speed) V (voltages):
V = [9, 13.5, 16];
S = randi(20,10,3);
Solution:
n = 1:size(S,1);
[ii,jj] = ndgrid(n,V);
F = griddedInterpolant(ii,jj,S,'cubic');
[i2,Vnew] = ndgrid(n,[9 10 11 16]);
out = F(i2,Vnew);
or with griddata:
n = 1:size(S,1);
[ii,jj] = ndgrid(n,V);
[i2,Vnew] = ndgrid(n,[9 10 11 16]);
out = griddata(ii,jj,S,i2,Vnew);
  5 commentaires
Andrei Bobrov
Andrei Bobrov le 7 Mai 2015
n = 1:size(SLT,1);
[i0,j0,k0] = ndgrid(n,[9,13.5,16],[-20,25,85]);
S = cat(3,SLT,SRT,SHT);
[i1,j1,k1] = ndgrid(n,9:.5:16,-20:85);
Vout0 = griddatan([i0(:),j0(:),k0(:)],S(:),[i1(:),j1(:),k1(:)]);
Vout = reshape(Vout0,size(i1));
Sami Al-Abbar
Sami Al-Abbar le 7 Mai 2015
Thank you very much!
I spent most of yesterday afternoon and this morning trying to figure this out by reading the help section and using trial and error.
I got close enough to know the griddatan needed a 2387x15x106 values but I didnt know how to use ndgrid to achieve this. Thanks again for your solution.

Connectez-vous pour commenter.

Plus de réponses (1)

Alka Nair
Alka Nair le 6 Mai 2015
Hi, Interpolation can also be done for multidimensional data. Please refer to the documentation page for INTERP2 and INTERP3 at the following locations:
and

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by