通过 AutoLISP 中的列表列表建立索引
我有一个整数列表列表:
(setq a '(21 14 35 29 16 28))
(setq b '(15 36 21 17 45 41))
(setq c '(24 21 35 28 17 21))
总共可能有 50 +/- 列表。
我有另一个列表:
(setq me '(17 14 31 21 17 28))
我想循环遍历列表的初始列表,并从列表 me
中减去列表 a
的每个成员(第一次)。
我如何能够通过列表的初始列表进行索引以便我可以执行比较?
I have a list of lists of integers:
(setq a '(21 14 35 29 16 28))
(setq b '(15 36 21 17 45 41))
(setq c '(24 21 35 28 17 21))
There could be 50 +/- lists total.
I have another list:
(setq me '(17 14 31 21 17 28))
I want to cycle through the initial list of lists and subtract each member of list a
(1st time thru) from list me
.
How would I be able to index thru the initial list of lists so that I can perform the comparison?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我假装理解你在问什么...
结果的值是 (31)
如果 ^ 是你正在寻找的那么一个更通用的解决方案:
返回 (31)
If I pretend to understand what you're asking ...
result's value is (31)
if that ^ was what you were looking for then a more generic solution:
returns (31)