I'm trying to do something I feel should be rather simple.
list1={1,2,3,4}
list2={11,12,13,14}
SomeFunction[list1,list2]
Output of SomeFunction { 1/11 , 2/12, 3/13 , 4/14 } Because I would like to use ListLogLogPlot on the output.
Note: I'm trying to use algorithms rather than raw loops over data.