Ok I may as well start off by stating the general issue:
I need to divide a list of floats by another list of floats - what I mean by that specifically is, I divide each element in the first list by it's index equivalent in the second list, i.e. a list of (4, 6, / (4, 2, 1) would yield (1,3,8) as a result.
I'm currently using PD extended and there seems to be no standard patch to do this - so I had a look around and found list-map2 which maps a function across element pairs given two lists. There are no examples or proper documentation regarding this function, so i'm not sure this is really what i'm after (I'm not that experienced with PD either so I can't tell from the implmentation) - if it is could someone provide an example of it's use? Otherwise it would if someone could tell me the proper way to solve this problem, I can fudge it - but i'd rather not do that.
Thanks in advance