match time stamps index
2 ビュー (過去 30 日間)
古いコメントを表示
michael scheinfeild
2021 年 1 月 18 日
編集済み: Walter Roberson
2021 年 1 月 25 日
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)
0 件のコメント
採用された回答
Walter Roberson
2021 年 1 月 18 日
編集済み: Walter Roberson
2021 年 1 月 25 日
format long g
v1 = [1610759986514 1610759986549 1610759986583 1610759986618 ]
v2 = [1610759986540 1610759986589]
interp1(v1, 1:length(v1), v2, 'nearest', 'extrap')
interp1(v2, 1:length(v2), v1, 'nearest', 'extrap')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!