2 variables in single cell

조회 수: 1 (최근 30일)
dinesh kumar mohan
dinesh kumar mohan 2019년 9월 21일
답변: Dheeraj Singh 2019년 10월 3일
a=[1
4,5
7 ]
(1*3 matrix)
B=[1
10
12,14]
(1*3 matrix)
i have a print the max of a and b??
  댓글 수: 6
dinesh kumar mohan
dinesh kumar mohan 2019년 9월 21일
from the attchemendt i have to read theexcel and find the critical path and start and finish of each activity.
Guillaume
Guillaume 2019년 9월 21일
How is what you're now asking in any way related to your original question?

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

답변 (1개)

Dheeraj Singh
Dheeraj Singh 2019년 10월 3일
You can try the following approach:
First you can make cell for all processes and populate it with duration of all processes it depends on.
The cell array may look like:
s=cell(7,1);
s{1}=[];%duration 2
s{2}=[];%duration 1
s{3}=[];%duration 3
s{4}=[2 1];%depends on 1 and 2
s{5}=[1 3];%depends on 2 and 3
s{6}=[3];%depends on 3
s{7}=[s{4} s{5} s{6}]%depends on 4,5,6
After getting all the duration populated, we can get the maximum for each column in the following manner:
t=cellfun(@max,s,'UniformOutput',false)
The empty cells mean the process is not dependent on any other process.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by