I don't have a problem reading in one big array of numbers from a file. I can't figure out how to read in multiple arrays that are delimited by certain characters. For example, my dataset has the following format.
#BEGIN 1
1 .1 .2
2 .8 .3
3 .9 .5
#END
#BEGIN 2
1 .1 .2
2 .8 .3
3 .9 .5
#END
I want to be able to read these in as two separate arrays so that I can manipulate them independently. Thanks!