Get a value of non existant index of array by interpolation

10 次查看(过去 30 天)
Im trying to remember a function in Matlab which returns a value of non existant index of array by interpolation.
eg:
arry = [4 5 6];
index = 1.5;
suchfunction(arry,index) %should return a value between the index 1 and 2 by interpolation (would be 4.5)
ans = 4.5
Could someone help me!?

采纳的回答

Star Strider
Star Strider 2016-9-3
Use the interp1 function:
arry = [4 5 6];
idx = 1:3;
idxi = 1.5;
arryi = interp1(idx, arry, idxi)
arryi =
4.5

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by