Using interp1 to interpolate y values
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I am attempting to interpolate my y values array instead of my x values.
Data: (y : 35x1534 double) (x: 35x1 double) (ny= 35x46 double)
newy = interp1(y,x,ny);
Hoping to have an output which is
newy : 35x46 double
However it returns with dimension errors. Is it possible to interpolate my y values to my ny values or would this not be possible?
Thanks.
3 Commenti
Cris LaPierre
il 4 Mar 2019
Modificato: Cris LaPierre
il 4 Mar 2019
I don't think interpolating is going to work for you. Interpolation requires your data cover the same range of values just sampled at different intervals. Besides both having 35 rows, I don't see any sort of overlap in your data.
Here's your Y data (35x1534)

Here's your NY data (35x46)

Risposta accettata
Cris LaPierre
il 4 Mar 2019
Modificato: Cris LaPierre
il 4 Mar 2019
Since interpolating your data doesn't make sense to me, I suggest trying to downsample y instead.
idx46 = round(linspace(1,1534,46));
newy = y(:,idx46)

Più risposte (0)
Vedere anche
Categorie
Scopri di più su Multirate Signal Processing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!