Create a interdependent matrix in Matlab and repeat it for 10 times
1 view (last 30 days)
Show older comments
Santhosh Chandrasekar
on 16 Feb 2018
Commented: Santhosh Chandrasekar
on 16 Feb 2018
Hi, I want to create the below mentioned interdependent matrix Matlab as mentioned below from E101 to S1(blue color) and repeat that for 10 times as done below (green color) E102 to S2 with continuous numbering for each new group(green color) from their previous group(blue color). Can you please help me with this.
0 Comments
Accepted Answer
Andrei Bobrov
on 16 Feb 2018
nm = cellstr(reshape((string({'E','R','E','S'}) + ([101,1,106,1] + (0:9)'))',[],1));
T = repmat({tril(ones(4),-1)},1,10);
out = [{nan},nm';nm,num2cell(blkdiag(T{:}))];
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!