I havesaved a huge matrix of numbers with dimensions {400, 4001, 2} using Put and got a TXT file formatted in the following way:
{{{1.1, 1.2}, {21.28,4 0.3}, {2.1, 0.7}, <...> },{1257.9, -3.6*^-8}, {1258.2, -3.4*^-9}}} with dimensions {400, 4001, 2}.Actually I would like to know ifhave hundreds of such files. Is there is a smart way to read only a part of it usingthe matrix efficiently? For example, how to take the first 20 or 40 sub-arrays out of 400? Simple ReadListImport or Get on the whole file takes too much time. Do you have any idea?
I attach a link toHere is one of my files:
Any suggestion to better save data in the future is welcome.