How to extract labels from a xlsx graph in matlab
2 views (last 30 days)
Show older comments
I am trying to extract labels from a excel file. I can get it to give me the label for one data cell but when i try doing it for more then one it doesn't work. This is what i have so far but I dont know how to fix this problem
0 Comments
Answers (1)
Star Strider
on 30 Oct 2022
It depends how you’re importing the Excel file. If you use readtable, the header line (assuming only one) will be ‘VN’ in:
T1 = readtable('Your ExcelFile.xlsx', 'VariableNamingRule','preserve')
VN = T1.Properties.VariableNames;
.
2 Comments
Star Strider
on 31 Oct 2022
Edited: Star Strider
on 31 Oct 2022
The second output should be a cell array of non-numeric information. You need to request the second and third outputs specifically. By default, only the first output will result if you only ask for one output. (The third output is a cell array of all the information.) You will need to extract the labels from the second or third output.
EDIT — (31 Oct 2022 at 16:26)
If you post the Escel file, I might be able to help with this. I cannot do anything without it.
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!