matlab graph using excel data
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sidra Rafique
el 19 de Nov. de 2019
Comentada: sidra Rafique
el 19 de Nov. de 2019
hi,
i have an excel file (say file1.xlsx)numeric data with 2000 rows and 25 colums. and i have 20 such excel sheets in this file with the same number of rows and colums.
i want to create a matlab file which will create graph of sheet1 of this excel file and save it with all the settings(labels, legends, font, etc), so that next time i only select the sheet2 and it will auomatically create graph and so on for the next 20 sheets of the same excel file.
is there any tool in matlab for such plotting or i have to write piece of code.
if coding is the solution then please help me through this.
thank you in advance
0 comentarios
Respuesta aceptada
munue
el 19 de Nov. de 2019
Have a look to this question:
It provides some basic commands you could use to implement a solution for your question - Open an Excel file, choose a sheet, read data from that sheet.
Hope it helps.
3 comentarios
munue
el 19 de Nov. de 2019
So, after you open your Excel file, choose a sheet and choose the data you want to plot, it is a matter of using the plot function:
At the bottom of that link, you'll find some suggested functions related to some of the functionalities that you are looking for:
If you go into those links you'll find examples of how to work with them, so you can programmatically create your desired plots.
Hope it helps - again
Más respuestas (1)
Steven Lord
el 19 de Nov. de 2019
Import the first set of data and generate the figure as you want it to appear. Once you have set up one figure, generate code that you can use with the second, third, etc. data sets to create a new figure that looks roughly like the first. Depending on how your later data sets differ from your first you may need to adjust the appearance of the later figures to get them to look exactly how you want, but the generated code should start you off with something close to what you want.
0 comentarios
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!