필터 지우기
필터 지우기

Use same algorithm for different data

조회 수: 3 (최근 30일)
Ricardo López
Ricardo López 2021년 1월 7일
댓글: Mathieu NOE 2021년 1월 7일
Good morning people,
I have a big algorithm and I would like to use different data without having to repeat the algorithm (for and if loops) many times. Any idea how?
I am pasting some part of my code as an example:
if j==1
Tin(j)=20;
Con(j) = H1(j)+Qel(j)*u(j);
NL_(j) = Con(j) - PV1(j);
Terr(j)=Ts(j)-Tin(j);
u(j)=0;
SOC(j)=0.5;
if Terr(j)>=1
u(j)=1;
end
end
I would like to change H1 for H2, H3,... Hn, as well as PV1, PV2,... PVn
  댓글 수: 1
Mathieu NOE
Mathieu NOE 2021년 1월 7일
hi
your code should be declared as a function and then you pass the arguments, and do loops for differents inputs
see matalb doc about how to create functions

댓글을 달려면 로그인하십시오.

채택된 답변

Rik
Rik 2021년 1월 7일
The source of your problem is that you chose to put data (i.e. the counter) in the variable name.
You should consider storing H1-Hn in a cell array (or normal array) so you can trivially loop over them.
%don't use this, but make sure to do something like this when the data is created
H={H1,H2,H3};PV={PV1,PV2,PV3};
for n=1:numel(H)
if j==1
Tin(j)=20;
Con(j) = H{n}(j)+Qel(j)*u(j);
NL_(j) = Con(j) - PV{n}(j);
Terr(j)=Ts(j)-Tin(j);
u(j)=0;
SOC(j)=0.5;
if Terr(j)>=1
u(j)=1;
end
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by