Plotting excel data in MATLAB
Mostrar comentarios más antiguos
I have an excel file with multiple cells and sheets. In each sheet, I want to plot the date and the data on the last column of each sheet and the graphs will be in one plot. Please I need assistant.
1 comentario
Sunday Aloke
el 11 de Jun. de 2022
Respuestas (1)
Mahmoud Ashraf
el 9 de Jun. de 2022
0 votos
first what is the extension of the excel file .xlsx , .csv and so on to load the data form excel
each extension has its load function
xlsread('file name.xlsx');
fopen(csv_filename);
after loading the data, now we plot it accoding to the syntx here
and use hold on to plot all graphs in a single figure
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!