Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

If i have a function to generate two matrix?

1 view (last 30 days)
Firas Al-Kharabsheh
Firas Al-Kharabsheh on 10 May 2016
Closed: MATLAB Answer Bot on 20 Aug 2021
If i have
for k=1:2
C1 = randi ([0 1],3,3);
C2 = randi ([0 1],3,3);
end
How can put the C1 and C2 in the same matrix like this
Matrix = [{0 1 1;1 1 1; 0 1 1}, {1 1 1;0 1 1;1 0 1}, { 1 1 0 ; 1 0 1 ;0 0 1} , {0 1 1 ; 1 0 1 ; 1 1 0 }]
  3 Comments
Firas Al-Kharabsheh
Firas Al-Kharabsheh on 10 May 2016
c1 and c2 is come from the cross over from genetic algorithm
Image Analyst
Image Analyst on 10 May 2016
What is the rule for inserting each matrix into the new output matrix?

Answers (1)

Walter Roberson
Walter Roberson on 10 May 2016
Matrix = arrayfun(@(IDX) randi([0 1], 3, 3), 1:4, 'Uniform', 0);

This question is closed.

Community Treasure Hunt

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

Start Hunting!