how can export and plot many data in the same figure
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
how can export and plot many data in the same figure
Respuestas (3)
Azzi Abdelmalek
el 20 de Feb. de 2014
Use plot function to plot your data. Look at
doc plot
To export your data, you can use
xlswrite % to xls file
csvwrite % to csv file
fprintf % to text file
...
6 comentarios
mohmad alrwiq
el 20 de Feb. de 2014
Azzi Abdelmalek
el 20 de Feb. de 2014
There are many methods, depending on the type of your file, and the type of your data (char, numeric), and how they are disposed. Give more details, you can post a sample of your data
mohmad alrwiq
el 20 de Feb. de 2014
Azzi Abdelmalek
el 20 de Feb. de 2014
What about your file? is it a text file? an Excell file?
mohmad alrwiq
el 20 de Feb. de 2014
Azzi Abdelmalek
el 20 de Feb. de 2014
v=xlsread('yourfilename.xlsx')
% Your file should be in the current folder, or specify the file name with its folder
mohmad alrwiq
el 23 de Feb. de 2014
0 votos
Image Analyst
el 23 de Feb. de 2014
Editada: Image Analyst
el 23 de Feb. de 2014
0 votos
You said export, not read. Anyway, see the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F Inside the loop over all files, put your xlsread() and your analysis or plotting of the data.
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!