Hello all, really enjoying using OM and the ability it provides to use a computer to assist in composition (CAC).
Question,
I generate a nested list
((0 1 2)(0 1 2)(0 1 2))
I would like to increment each sublist by an amount (first list by 0, second by 12, third by 24 (12+12))
Desired resultant
((0 1 2)(12 13 14)(24 25 26))
I have tried using mapcar, omloop, and combining those two but cannot get a working solution. My hangup is the incrementing of the value added to each subsequent list.
Naturally these values will be dynamic (list size, number of sublists, and value to increment)
Thank you for your help!