Find total completion time of jobs

1 view (last 30 days)
luca
luca on 4 Sep 2019
Commented: Walter Roberson on 4 Sep 2019
I have two different part that requires 4 different jobs. the time requested by each job is reported in the matrix M. The raws represent the two different parts and the columns the time for each job. PART1 enter before PART2 and the machine can do just one job at at time, so Job1 on PART2 have to wait the finish of Job1 on PART1.
M = [2 3 4 4 ;
4 2 4 2 ]
What I want to obtain is the time that is needed to process all the parts with all the jobs. By hand it result to be t=15
Does someone know how to calculate by using matlab? It would be really helpful with a FOR cycle, because in the real case I have lot of job as well as lot of part.
  3 Comments
Ted Shultz
Ted Shultz on 4 Sep 2019
It looks like you are trying to find Max(finish time of all parts) - min (start time of all parts). You M matrix does not include start of strop times, so I belive addtional informaiton is needed.

Sign in to comment.

Answers (0)

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!