Help with Viewing Table Contents
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Tiana Johnson
am 17 Jun. 2020
Kommentiert: David Hill
am 17 Jun. 2020
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')
2 Kommentare
Akzeptierte Antwort
David Hill
am 17 Jun. 2020
Bearbeitet: David Hill
am 17 Jun. 2020
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.
2 Kommentare
David Hill
am 17 Jun. 2020
Double click on each of the 61x1 cells or type:
FloObsWindTable.Location_Name
FloObsWindTable.Longitude
FloObsWindTable.Latitude
%type similar for the other table fields
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
