Plotting two .m files on one graph

22 visualizaciones (últimos 30 días)
Megan Mirkhanian
Megan Mirkhanian el 31 de En. de 2020
Comentada: Rik el 31 de En. de 2020
I keep plotting 2 .m files on one graph but they keep plotting on separate graphs. I used hold on on one of the files.
  1 comentario
Megan Mirkhanian
Megan Mirkhanian el 31 de En. de 2020
File2=csvread('secondhalf.CSV') % samplmean=mean(File2) % std(File2) averageY2 = mean(File2); sigmaY2 = std(File2); x1 = linspace(min(File2),max(File2),50); %this produces a sorted vector over which to plot the pdf norm = normpdf(x1,averageY2,sigmaY2); figure; plot(x1,norm,'-k'); hold on;

Iniciar sesión para comentar.

Respuestas (1)

Bhaskar R
Bhaskar R el 31 de En. de 2020
Maintain same figure value in both files. suppose
file_1.m
figure(1) % figure 1
plot(1:100)
hold on
file_2.m
figure(1) % same figure handle
file_1; % calling first file
plot(2*[1:100]);
legend('show')
  1 comentario
Rik
Rik el 31 de En. de 2020
Or change the m files to functions that accept a figure or axes handle as an input.

Iniciar sesión para comentar.

Categorías

Más información sobre Printing and Saving en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by