How can I create this orthogonal matrix using MATLAB?
4 次查看(过去 30 天)
显示 更早的评论
I would like to create the following matrix for know m and n.
The matrix is in the following format for 1<=j<=n. Thanks.
2 个评论
Youssef Khmou
2014-3-31
编辑:Youssef Khmou
2014-3-31
hi, Can you mention the source of the orthogonal matrix above?
The other question is if m=n, what can you say about Lnn?
采纳的回答
Andrew Sykes
2014-3-31
If m>n the following should work.
m=8;
n=5;
L=zeros(m,n);
for j=1:n
L(:,j)=((m-n+j-1).*(m-n+j)).^(-1/2).*[ones(m-n+j-1,1) ; -(m-n+j-1) ; zeros(n-j,1)];
end
disp(L)
If m<=n, a similar approach should be possible (but this exact code will generate errors).
1 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!