Hi folks,
I'm looking for a way to read in c++ a text file containing numpy arrays and put the data into vector< vector< ... > >
, can anyone help me out please ?
Thanks a lot. Archy
EDIT: format of the text file
[[[ 0 1] [ 2 3] [ 4 5] [ 6 7] [ 8 9]] [[10 11] [12 13] [14 15] [16 17] [18 19]] [[20 21] [22 23] [24 25] [26 27] [28 29]] [[30 31] [32 33] [34 35] [36 37] [38 39]]]
Perhaps more readably:
[
[
[ 0 1] [ 2 3] [ 4 5] [ 6 7] [ 8 9]
]
[
[10 11] [12 13] [14 15] [16 17] [18 19]
]
[
[20 21] [22 23] [24 25] [26 27] [28 29]
]
[
[30 31] [32 33] [34 35] [36 37] [38 39]
]
]