random matrix full rank
1 回表示 (過去 30 日間)
古いコメントを表示
massimiliano frasca
2019 年 11 月 12 日
コメント済み: massimiliano frasca
2019 年 11 月 13 日
how can I generate a random matrix of this type (see photo) with the condition that it is full rank?

0 件のコメント
採用された回答
Stijn Haenen
2019 年 11 月 12 日
Hi,
Try this one:
T=6;
a=rand(T);
m=tril(a,-1);
matrix=m+m'+eye(T).*rand(T);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!