Feeds
질문
How can I modify the following code:
function [Q,R]=mgs(A) [m,n]=size(A); V=A; Q=zeros(m,n); R=zeros(n,n); for i=1:n R(i,i)=norm(V(:,i)); ...
10년 초과 전 | 답변 수: 1 | 0
1
답변질문
How can I use the Modified Gram Schmidt code below
function [Q,R]=mgs(A) [m,n]=size(A); V=A; Q=zeros(m,n); R=zeros(n,n); for i=1:n R(i,i)=norm(V(:,i)); ...
10년 초과 전 | 답변 수: 0 | 1