2D non-Square Matrix to 2D square matrix
1 回表示 (過去 30 日間)
古いコメントを表示
How to make a matrix A with diamension m x n , m,n>1 to a square matrix ?
0 件のコメント
採用された回答
madhan ravi
2019 年 4 月 27 日
編集済み: madhan ravi
2019 年 4 月 27 日
Wanted = nan(length(A));
Wanted(1:numel(A)) = A
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!