plot between two variables

1 回表示 (過去 30 日間)
almohanned alsufyani
almohanned alsufyani 2023 年 5 月 31 日
回答済み: Torsten 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
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")
  2 件のコメント
Constantino Carlos Reyes-Aldasoro
Constantino Carlos Reyes-Aldasoro 2023 年 5 月 31 日
What exactly is the problem for which you need help?
almohanned alsufyani
almohanned alsufyani 2023 年 5 月 31 日
I want the code to produce a plot like this.

サインインしてコメントする。

回答 (1 件)

Torsten
Torsten 2023 年 5 月 31 日
Use
plot(1:365,[PR;ones(1,365)*PR_ave]);
instead of
plot(PR,PR_ave);
if PR is a row vector, or
plot((1:365).',[PR,ones(365,1)*PR_ave]);
if PR is a column vector.

カテゴリ

Help Center および File Exchange2-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