Plotting multiple graphs in one plot

조회 수: 2 (최근 30일)
Abdulrahman Alotibi
Abdulrahman Alotibi 2023년 5월 31일
답변: VBBV 2023년 5월 31일
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