
Not applicable
11-12-2018
10:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi!
I have a little challenging problem. I have this list:
(setq mylist (list (a (25 3)) (b (30 8)) (a (60 8)) (a (80 5)) (b (50 7)) (c (14 2)) ) )
Where the first element is the name of a place and the second one is their coordinates.Now I need the middle point for each group of letter at the first element and the biggest one of the second member in the second place. I mean:
(a (52.5 8)) (b (40 8)) (c (14 2))
I can't find any easy way to accomplish this simple task. Every help is welcome!
Best regards
Solved! Go to Solution.