How can i convert excel file to .mat format and call to matlab code

34 visualizaciones (últimos 30 días)
I have an excel file named DAH,numeric file .How can i call that excel file to matlab code.Should i convert it to .mat format to call?
please find the below code
filename = 'DAH.xlsx';
a = xlsread(filename);
save(matfileName,'a');
x=a(:,1);
plot(x)
i am getting this error
Error using xlsread (line 136)
XLSREAD unable to open file 'DAH.xlsx'.
File 'C:\Users\Neethu Elizabeth\Downloads\DAH.xlsx' not found.

Respuesta aceptada

Star Strider
Star Strider el 21 de Ag. de 2020
Provide the complete file path to ‘DAH.xlsx’ . That is easiest to do with the fullfile function.
  6 comentarios
NN
NN el 22 de Ag. de 2020
i got it cleared.i have an excel file which has two columns, first column represent time of the dayfrom0.00 and second column represent values with respect to the time of the day.but when i plot the column y axis shows differently, it shows second column values but not exact time as mentioned in the first column .Waht should i do to correct the timing
Star Strider
Star Strider el 22 de Ag. de 2020
I cannot determine that because I do not know what the first column is. I also do not know what version/release of MATLAB you have.
One option, to be safe, is to to use the datenum function to convert the times to date numbers. Those values should plot correctly.
(A better approach would be to use datetime, and perhaps readtable or readmatrix instead of xlsread, however I do not know if you have those options.)

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by