Using xlsread values from column P and forward
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am reading an excel file using xlsread() function.
xlRange = 'B2:AV2';
result = xlsread(filename, sheet, xlRange);
When I print the result matrix I noticed the xlsread() is not returning expected results. The first elements in the result matrix (from range B2 to O2) are equal to the values in the Excel file. However, and strangely, values from range P2 to AV2 does not coincide with the values in the Excel file.
So I proceeded to do the following test
result = xlsread(filename, sheet, 'P2');
And when I print the result matrix, its value its completely different from the value in the Excel file.
Digging a little bit more, I found out that the value returned for P2 was not a random number, but the same as for C2. And subsequently, value requested for Q2 returns the value in D2 and so on.
P2 = C2
Q2 = D2
R2 = E2
...
I have been scratching my head for hours, any help would be much appreciated
0 commentaires
Réponse acceptée
ES
le 14 Juin 2018
Modifié(e) : Walter Roberson
le 15 Juin 2018
What kind of data do you have in your excel file? xlsread can have three outputs, numbers, text and raw. Which of it are you using?
Becuase when you simply use
result = xlsread(filename, sheet, xlRange);
only the numbers in the range are read.
Use to read all contents
[num,txt,raw] = xlsread(___)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!