※ 引述《fakuko (阿信哥)》之銘言:
: 想請問一下
: 我有一組已知的x-y數據點共100*100個
: 然後我實驗得到一組x-y有1*100點數據
: 我想要尋找實驗的數據最靠近已知數據的組合
: 我該用甚麼指令?
: Fit這個指令好像要套公式
: 但是我不是公式
: 有人可以告訴我嗎~謝謝~
(* 產生一組 100 x 100 x 2 的資料 *)
data = Flatten[RandomReal[{0, 100}, {100, 100, 2}], 1]
(* 產生一組 100 x 2 的測試資料 *)
test = RandomReal[{0, 100}, {100, 2}];
(* 傳回個test中各點在data最短距離的對應點 *)
ans = {#, First@Nearest[data, #]} & /@ test;