So i want to read two 2D-arrays A and B from a csv file as a numpy-Array
i have the following csv file with ";" seperating two arrays:
A;B
1,1,2,2;3,3,4,4
6,7,3,7;3,5,3,5
1,8,5,3;6,1,7,5
The result should be something like this
A = [[1, 1, 2, 2], [6, 7, 3, 7], [1, 8, 5, 3]]
B = [[3, 3, 4, 4], [3, 7, 3, 7], [6, 1, 7, 5]]
now how i am supposed to do it, i tried alot with loadtxt and genfromtxt but couldn't do it