I have the following two list of lists and I want to substract every item from a from the corresponding item in b:
a = [[8.5], [9.3], [8.2]]
b = [[7.4], [2.3], [3.4]]
So the output should be
c = [[1.1], [7], [4.8]]
It seems to be very simple, but I am struggling with it. Does somebody have a solution?