All the posible combination of two matrices
Show older comments
I have two matrix
A=[1]
and
B=[2 3 4]
find the all possible combination of these tow matrices is
the output
C=[1 2; 1 3; 1 4; 1 2 3; 1 2 4; 1 3 4; 1 2 3 4]
how to find it
Accepted Answer
More Answers (1)
Walter Roberson
on 17 Dec 2012
0 votes
You cannot create a numeric matrix with a variable number of elements in each row.
4 Comments
Jothi
on 17 Dec 2012
Walter Roberson
on 17 Dec 2012
You cannot get the result you asked for. Andrei's answer does not give you the result you asked for: it gives you a cell array, but you asked for a numeric array.
Jothi
on 17 Dec 2012
Walter Roberson
on 17 Dec 2012
xlswrite()
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!