how to save plots in a folder. named as figure1,Figure2,Figure3,Figure4?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have 40 list of people data
each data is having 2 data of age
i have used image below to explain it clearly
so from age data a1 4 graphs and a2 4 graphs
from 1 data i am getting 8 graphs..
i am facing difficulty to save graphs numbered as figure1,figure2 in a folder
a=dlmread('S11.txt')
freq=a(:,1)
Spam=a(:,2)
Spam=reshape(Spam,[1,21])
x = freq;
y = spam;
plot(x,y);
grid on
title('plot');
xlabel('freq');
ylabel('sparm');
is there any command which will find out no of figures already generated and then based on that save the figures
like this i have to plot for multiple sparameters ..how to save it as figure1 figure2 .figure 3 in jpg format in folder
2018a version
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!