What is a function that takes the diagonal of a matrix (N) and converts the diagonal to all zeros.
조회 수: 2 (최근 30일)
이전 댓글 표시
Ex.
>> m=[1 2 3; 4 5 6;1 2 3]
m =
1 2 3
4 5 6
1 2 3
>> m=diagzero (m)
m =
0 2 3
4 0 6
1 2 0
댓글 수: 0
채택된 답변
Youssef Khmou
2013년 4월 9일
try :
function Y=diagzero(X)
N=size(X);
if N(1)~=N(2)
error(' Matrix not square');
end
Y=X;
for x=1:N(1)
Y(x,x)=0;
end
댓글 수: 0
추가 답변 (4개)
James Tursa
2013년 4월 10일
편집: James Tursa
2013년 4월 10일
Another method if you know m is square:
r = size(m,1) + 1;
m(1:r:end) = 0;
If you don't know if m is square or not you could do this:
r = size(m,1);
n = min(numel(m),r*r);
m(1:r+1:n) = 0;
댓글 수: 0
Andrei Bobrov
2013년 4월 10일
m(eye(size(m))>0) = 0;
댓글 수: 1
James Tursa
2013년 4월 10일
Or to avoid testing all those 0's:
m(speye(size(m))>0) = 0;
or:
m(logical(speye(size(m)))) = 0;
Azzi Abdelmalek
2013년 4월 9일
편집: Azzi Abdelmalek
2013년 4월 9일
ii=1:size(m,1);
m(sub2ind(size(m),ii,ii))=0
댓글 수: 0
Jonathan Epperl
2013년 4월 10일
편집: Jonathan Epperl
2013년 4월 10일
Assuming m is square (because else you'd have to define the diagonal for me):
diagzero = @(m) m - diag(diag(m));
댓글 수: 1
참고 항목
카테고리
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!