match time stamps index

2 visualizaciones (últimos 30 días)
michael scheinfeild
michael scheinfeild el 18 de En. de 2021
Editada: Walter Roberson el 25 de En. de 2021
hi i have two vectors diffrent lengths with diffrent values
i want to match closest index in one vector to other
example :
v1 =
[1610759986514 1610759986549 1610759986583 1610759986618 ]
v2= [ 1610759986540 1610759986589]
so result should be in vector 1 match index 2,3 to v2 index 1,2 (time is close enough)

Respuesta aceptada

Walter Roberson
Walter Roberson el 18 de En. de 2021
Editada: Walter Roberson el 25 de En. de 2021
format long g
v1 = [1610759986514 1610759986549 1610759986583 1610759986618 ]
v1 = 1×4
1610759986514 1610759986549 1610759986583 1610759986618
v2 = [1610759986540 1610759986589]
v2 = 1×2
1610759986540 1610759986589
interp1(v1, 1:length(v1), v2, 'nearest', 'extrap')
ans = 1×2
2 3
interp1(v2, 1:length(v2), v1, 'nearest', 'extrap')
ans = 1×4
1 1 2 2

Más respuestas (0)

Categorías

Más información sobre Time Series Collections en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by