How to extract labels from a xlsx graph in matlab
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1174178/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1174178/image.png)
0 comentarios
Respuestas (1)
Star Strider
el 30 de Oct. de 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 comentarios
Star Strider
el 31 de Oct. de 2022
Editada: Star Strider
el 31 de Oct. de 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.
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!