MATLAB: Help with Viewing Table Contents

table

I downloaded a table but I'm unable to view it's contents. I've tried just about everything but all I'm coming up with is information about the table itself.
>> disp(FloObsWindTable)
FloObsWindTable
>> readtable('FloObsWindTable')

Best Answer

It is a .m file. All you have to do is:
load('FloObsWindTable');
It will be in your work space. Double click on it and navigate through the fields to see the cell arrays.