Effacer les filtres
Effacer les filtres

How to extract labels from a xlsx graph in matlab

4 vues (au cours des 30 derniers jours)
Amanda
Amanda le 30 Oct 2022
Modifié(e) : Star Strider le 31 Oct 2022
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

Réponses (1)

Star Strider
Star Strider le 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;
If you’re using xlsread, it should be in the second output.
If you’re using readmatrix, all is lost, since the header lines will not be imported.
.
  2 commentaires
Amanda
Amanda le 30 Oct 2022
I am using xlsread
Star Strider
Star Strider le 31 Oct 2022
Modifié(e) : Star Strider le 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.

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by