I have a binary file that I am trying to read in. Within the binary is numerical values of 70 variables. The variables has a various number of columns and rows. In general they look like X(n,1) , Y(n+2,1) , Z(n+2,m) , and L(n,m).
My thought was to read in the file as a vector of values and and then reshape it but I don't think I can reshape in a concise way it because the number of rows is not constant.
Any guidance would be greatly appreciated. Thanks.