필터 지우기
필터 지우기

Create a for cycle over an array

조회 수: 2 (최근 30일)
luca
luca 2019년 9월 4일
편집: Jan 2019년 9월 4일
In my case I have X different job with Y different duration
D = [2 3 4 4 5 6 7 3 ];
so job X=1 will last Y=2.
I need to write a code that give me the following result:
tin1= 0 , tfin1=2, tin2= 2 , tfin2=2+3=5, tin3= 5 , tfin3=5+4=9, tin4=9 , tfin4=9+4=13........ So "tinx" means the inital time of job x, while "tfinx" means the final time of job x. if job one finish at 2, the job two will finish at 2 plus the duration of the job 2 (3) obtaining 5, and so on.
I want to write a code that is able to generate all this value
Does someone help me? the length of D should be variable so I would like to obtain a code that is independent from its length
  댓글 수: 2
Jan
Jan 2019년 9월 4일
I've cleaned the tags. It is not useful to use a pile of tags, which have no relation to your problem.
Steven Lord
Steven Lord 2019년 9월 4일
I'm trimming more of the tags.

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

채택된 답변

Jan
Jan 2019년 9월 4일
편집: Jan 2019년 9월 4일
Do not create a bunch of variables with an index hidden in the names: See TUTORIAL: Why and how to avoid Eval
I assume all you need is:
D = [2 3 4 4 5 6 7 3 ]
T = cumsum([0, D])
Now e.g. T(1) and T(2) contain everything you want. This is much better than tin(1) and tfin(1). If you really need 2 variables:
Tini = T(1:end-1);
Tfin = T(2:end);
  댓글 수: 5
luca
luca 2019년 9월 4일
Cause this is a general case, then I have to implement the for loop that I've asked for in a more complicated case
luca
luca 2019년 9월 4일
thanks !

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

추가 답변 (2개)

darova
darova 2019년 9월 4일
It is a job for cumsum() function:
D = [2 3 4 4 5 6 7 3 ];
tin1 = [0 2 5 9 13 18 24 31];
tin2 = [2 5 9 13 18 24 31 34];]

Fabio Freschi
Fabio Freschi 2019년 9월 4일
Try this
>> tfin = cumsum(D)
tfin =
2 5 9 13 18 24 31 34
>> tin = [0 tfin(1:end-1)]
tin =
0 2 5 9 13 18 24 31

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by