Hi Joe,
The link you have provided doesn’t seem to be working but I can provide you with general workflow to extract relevant data from tar file and use it to create a table in MATLAB.
You can use the “untar” and “gunzip” files to handle the “.tz” and “.gz” files respectively but after that the decompressed files may not be directly readable as text due to their binary or specific data format. You must read the extracted file based on its format.
For example, if you have “NetCDF” file, you can read the file using “ncread” function and specify the variable name as below:
ncFile = 'KOKX20100203_145516_V03'; % Example file name
data = ncread(ncFile, 'precipitation'); % Replace 'precipitation' with the actual variable name
Check the following page to find more info regarding the scientific data formats supported in MATLAB - https://www.mathworks.com/help/matlab/scientific-data.html?s_tid=CRUX_lftnav
I hope this resolves your query.