I want to generate Q, a 100*12 matrix, such that conjugate transpose(Q)*Q=I(12*12 identity matrix). Please tell me how to generate that matrix.
1 回表示 (過去 30 日間)
古いコメントを表示
MAMATHA YADAVALLI
2017 年 12 月 15 日
コメント済み: MAMATHA YADAVALLI
2017 年 12 月 15 日
I am using the following code:
rng(10)
Q=randn(100,12)+1i*randn(100,12);
QH=ctraspose(Q); % conjugate transpose of Q
I=QH*Q;
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Operating on Diagonal Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!