ReadTable producing different result for 2017 and 2020A matlab version

28 vues (au cours des 30 derniers jours)
Lalit Kumar
Lalit Kumar le 29 Avr 2022
Hi,
I have created a script which is reading data from excel in matlab 2017v.It's reading whole excel file as it is ,without adding "" for missing value ,not omitiitng any row and setting variable name = VAR1,VAR2....etc
file_name = 'TestCase.xlsx';
excel_sheet = readtable(file_name,'Sheet',1,'ReadVariableNames',false);
Now i have tried running same script in the matlab2020v,it's reading excel in a different way than 2017v.It's omitting row and reading first line as VarName.
file_name = 'TestCase.xlsx';
excel_sheet = readtable(file_name,'Sheet',1,'ReadVariableNames',false);
Update:Added Image
I want MATLAB2020A read excel in the format as it's read by 2017A
  5 commentaires
dpb
dpb le 29 Avr 2022
Modifié(e) : dpb le 29 Avr 2022
I'd probably go back a step and use an import object that matches the expected file structure and form in which want the file to be interpreted. This then should produce the desired consistent results.
I don't know what your 2017 imported file looked like; be good to attach it as a .mat file, but R2020b didn't seem to leave anything out and didn't read variable names...
Lalit Kumar
Lalit Kumar le 30 Avr 2022
@dpb added image for better understanding

Connectez-vous pour commenter.

Réponses (1)

Prasanna Konyala
Prasanna Konyala le 2 Mai 2022
Modifié(e) : Prasanna Konyala le 2 Mai 2022
From my understanding, you want to get the whole data in excel to be read in the same format as 2017a.
From 2020a, "readtable()" functionality is a bit different than earlier versions. It can detect data types, discard extra header lines, and fill in missing values. In the file attached, it is discarding extra header lines at the start and reading each column as numeric data. Hence, unknown or missing data is replaced by NaN.
If you want the functionality as earlier versions, you can add ('Format','auto') name-value pair argument to the readtable function in 2020a.
file_name = 'TestCase.xlsx';
excel_sheet = readtable(file_name,'Sheet',1,'ReadVariableNames',false,'Format','auto');
Please refer this document for more information about "readtable()"

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by