Mapping 2 vectors - help to vectorize

前端 未结 6 1151
情话喂你
情话喂你 2020-11-30 12:34

Working in Matlab I have 2 vectors of x coordinate with different length. For example:

xm = [15 20 24 25 26 35 81 84 93];
xn = [14 22 26 51 55 59 70 75 89 96         


        
6条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 13:30

    It looks like your input vectors are sorted. Use a binary search to find the closest match. This will give you a O(n ln n) run time.

提交回复
热议问题