Plotting multiple graphs in one plot

1 次查看(过去 30 天)
此 个问题 已被 Dyuman Joshi 标记
Hi, I want to plot the (PR) vs. the (PR_ave) where (PR)changes daily while (PR_ave) is the aferage of the (PR), please change the code below to the desired goal, thank you
I want the code to produce a plot like this:-
PR = (Md_MSF_seclatent_steam)./(Ncqsum); % Performance Ratio
PR_ave=sum(PR)/365; % Average Performance Ratio
plot(PR,PR_ave);
ylabel("PR")
xlabel("Days")
title("Performance Ratio profile")

回答(1 个)

VBBV
VBBV 2023-5-31
% PR = (Md_MSF_seclatent_steam)./(Ncqsum); % Performance Ratio
PR = rand(365,1);
PR_ave=sum(PR)/365; % Average Performance Ratio
hold on
plot(PR)
plot(PR_ave*ones(1,365));
ylabel("PR")
xlabel("Days")
title("Performance Ratio profile")
legend('PR','PR-ave')

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by