Read Disk

Reads the entire dataset name from the HDF5 database at path db and returns it as a raw array. Throws HDF5DataSetNotFoundException if the dataset is not found. 

Example: 

xPkSav = ReadDisk(DB,"RInput/xPkSav")


Alternatively, we can specify the type of variable xPkSav will be saved as. This assignment is faster and more stable because Julia doesn't have to determine what type of object its dealing with. 

xPkSav::VariableArray{4} = ReadDisk(DB,"RInput/xPkSav")


Write Disk

WriteDisk(db,"RInput/xPkSav",xPkSav)

WriteDisk(db,"SInput/xPkSavECC",xPkSavECC)