MATLAB: Concentration with respect to time at different temperature

c vs t

Hey,
I want to merge these two plots on same graphs to visualise nature clearly.
Thank you in advance.
See the attachments for my two graphs.

Best Answer

Try this
h1 = open('graphcvst1.fig');
h2 = open('graphcvst2.fig');
% extract data from the first figure
figure(h1)
h = get(gca,'children');
X = get(h,'XData');
Y = get(h,'YData');
% plot extracted data into the second figure
figure(h2)
hold on
plot(X,Y,'r')
hold off