how can we calculate interpolation between two double MATLAB arrays?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Guido Pastore
il 15 Mar 2019
Commentato: Star Strider
il 15 Mar 2019
Given two arrays of double of different sizes (A = 1054x1 and B = 601x1) how is it possible to perform an interpolation ??
0 Commenti
Risposta accettata
Star Strider
il 15 Mar 2019
It depends on how you want to interpolate them. The‘safest’ way is likely to interpolate the longer vector to the length of the shorter vector:
A = sin((0:1053)/105)';
B = cos((0:600)/30)';
Ai = interp1((1:numel(A))', A, (1:numel(B)), 'linear', 'extrap');
You can then see the result (a sort of Lissajous figure):
figure
plot(Ai, B)
grid
8 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!