How to Create/Modify for matrices or matrix
古いコメントを表示
K=5
matA= [1 2 ..4 K]
matB=[matA matA matA matA matA]
matB=[1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5]
How to operate this equation matB?
採用された回答
その他の回答 (1 件)
Les Beckham
2022 年 4 月 12 日
編集済み: Les Beckham
2022 年 4 月 12 日
K=5;
matA = 1:K
matB = repmat(matA, 1, K)
カテゴリ
ヘルプ センター および File Exchange で Linear Algebra についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!