フィルターのクリア

First number that comes after a list of numbers

2 ビュー (過去 30 日間)
Jonathan Cheong
Jonathan Cheong 2021 年 3 月 8 日
コメント済み: Jonathan Cheong 2021 年 3 月 8 日
Hello, I have a list of numbers 'indexstart'. I would like to find the 1st number that comes after these number from another list 'indend' and append them both in different columns.
For example:
A = [1, 8, 20]
B = [4, 5, 6, 9, 25, 30]
The output would be:
[1, 4]
[8, 9]
[20, 25]
Thanks in advance.

採用された回答

dpb
dpb 2021 年 3 月 8 日
>> [A;interp1([-eps(1) B],[-eps(1) B],A,'next')].'
ans =
1 4
8 9
20 25
>>

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by