Consider p,q = 2 vectors of same or different length. Get a Output Array which has all the possible combinations of Elements of vectors p and q for example:
p = [1 2 3], q = [10 12]
then
Output = [1 10;2 10;3 10;1 12;2 12;3 12]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers42
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1649 Solvers
-
Back to basics 9 - Indexed References
460 Solvers
-
776 Solvers
-
208 Solvers
-
Make an identity matrix whose diagonal elements are 1:n
123 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test cases are added.