1
這是一個關於在Mathematica中重新安排嵌套列表部分的問題。
我有一個嵌套列表:
DatenList = {{1, {100, 200}}, {2, {101, 201}}, {3, {102, 202}}};
,並希望得到像
{{1,100},{2,101}}
巧妙地提取嵌套列表中的元素(Mathematica)
另一個列表中是否有更合適的方法比
temp = DatenList[[1 ;; 2, 1]]; temp2 = DatenList[[1 ;; 2, 2]][[;; , 1]]; temp = {temp}~Join~{temp2}; finalList = Transpose[temp]
這將產生
{{1, 100}, {2, 101}}
感謝您的快速答覆。我最喜歡第一個解決方案。 – AWi 2014-09-01 08:31:06