having the same problem about the arrays

2 ビュー (過去 30 日間)
Elisa
Elisa 2024 年 10 月 1 日
コメント済み: Star Strider 2024 年 10 月 2 日
daily_savings=zeros(1505,1);%initial saving vectors
daily_earnings=zeros(1505,1);%initial earning vectors
% Loop through each day to calculate savings and earnings % total days is 1505 (Date from(06/04/20 to 19/05/24))
for i = 0:1504 % days1 starts from 0 so 0:1504
% Calculate daily savings
daily_savings(i + 1) = O_Consumption(i + 1).*Cost;
% Calculate daily earnings
if i <= 1212 % Up to July 31, 2023 (day index 1212)
daily_earnings(i + 1) = energy_out(i + 1).*Feed(i + 1);
else % From August 1, 2023 onwards
if e_out(i + 1) < 10
daily_earnings(i + 1) = e_out(i + 1).*Feed(i + 1);
else
daily_earnings(i + 1) = ((e_out(i + 1) - 10) / 100) + 0.88;
end
end
above is the code

採用された回答

Star Strider
Star Strider 2024 年 10 月 1 日
My guess is that you actually want to calculate this:
daily_savings(i + 1) = O_Consumption(i + 1).*Cost(i+1);
Multiplying by the entire ‘Cost’ vector is likely throwing the error.
.
  2 件のコメント
Elisa
Elisa 2024 年 10 月 2 日
Thank you ! that is the problem
Star Strider
Star Strider 2024 年 10 月 2 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by