how to create a matrix in matlab?
3 ビュー (過去 30 日間)
古いコメントを表示
L12 L13 L23
0 0 0
0 0 1
0 1 0
0 1 1
1 0 0
1 0 1
1 1 0
1 1 1
how to create a matrix
0 件のコメント
採用された回答
Veronica Taurino
2021 年 3 月 16 日
編集済み: Veronica Taurino
2021 年 3 月 16 日
Your question is not clear. If you have those 3 arrays:
L12 = [0 0 0 0 1 1 1 1];
L13 = [0 0 1 1 0 0 1 1];
L23 = [0 1 0 1 0 1 0 1];
Matrix = [ L12; L13; L23]
or
Matrix = [ L12; L13; L23 ]'
depending or your needs
0 件のコメント
その他の回答 (2 件)
Walter Roberson
2021 年 3 月 16 日
[L23, L13, L12] = ndgrid(0:1);
L12 = L12(:); L13 = L13(:); L23 = L23(:);
table(L12, L13, L23)
15 件のコメント
Walter Roberson
2021 年 4 月 11 日
That code will never do what you want it to do, and it cannot be fixed.
Your source is a paper that is wrong. You need to get corrections from the authors of the paper.
参考
カテゴリ
Help Center および File Exchange で Memory Usage についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!