how to make a function (named pcc ) that solves the cartesian product of 2 strings A(with n elements) and B(with m elements)?
3 ビュー (過去 30 日間)
古いコメントを表示
intputs n, m, A, B output pcc
0 件のコメント
回答 (2 件)
David Goodmanson
2018 年 4 月 3 日
編集済み: David Goodmanson
2018 年 4 月 3 日
Hi Cosmin,
If by 'strings' you mean vectors of characters then there are questions about how to accomplish multiplication. If you mean vectors of numbers, then in this context the Cartesian product is the same as the outer product, multiplication of a column vector by a row vector:
a = [1 2 3].'
b = [4 5 6 7]
a*b
ans =
4 5 6 7
8 10 12 14
12 15 18 21
0 件のコメント
Roger Stafford
2018 年 4 月 3 日
Assume A and B are row strings.
C = [reshape(repmat(A,length(B),1),[],1),repmat(B(:),length(A),1)];
The two-element rows of C will contain all possible pairs of elements of A and B.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!