how to interpolate x with y and vice versa ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Find the attachment consists of two columns. 1st column should be interpolated with 2nd column and 2nd column should be interpolated with 1st column.
0 commentaires
Réponses (1)
ANKUR KUMAR
le 14 Sep 2018
Try using interp2, spline or pchip. "interpolate first coloumn with second" ????
Lets see an example. A contains the data over 10 points. If you want to interpolate A on finer intervals (say in interval of 0.1), then code would like like:
A=randi(10,1,10);
interp1((1:10),A,(1:0.01:10))
spline((1:10),A,(1:0.01:10))
pchip((1:10),A,(1:0.01:10))
Above are the three different methods of interpolating linear matrix.
Hope you can relate this simple example with your problem.
Voir également
Catégories
En savoir plus sur Interpolation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!