Feeds
질문
Hi, guys. How would one extract the lower triangle of a matrix without using the tril function and witout a for loop?
I tried B = zeros(size(A)); n=size(A,2); for(i=1:n) B(end+1:end+n-i+1)=A(i:n,i); end but I seem to be getting some ...
대략 11년 전 | 답변 수: 2 | 0
