How to use syntax T = readtable(filename) for creating a table from a file?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
phdcomputer Eng
am 26 Apr. 2018
Kommentiert: phdcomputer Eng
am 30 Apr. 2018
I put the excel dataset file (.xlsx) with specific 'filename' in the Matlab projects saving path and then I used this syntax in command window
T = readtable(filename)
the program gives this error:
Undefined function or variable 'filename'
I'll be very grateful if suggest me a soloution
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 26 Apr. 2018
try this
filename='c:\MyDoc\MyFile.xlsx';
T=readtable(filename);
3 Kommentare
Fangjun Jiang
am 27 Apr. 2018
I am not sure what do you mean saying "by using counters". Once the table is created, you can reference it by ".",e.g. T.Name, T.Age. See "help table". There is an example data, run the example and check out patients.Age, patients.LastName, etc.
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!