필터 지우기
필터 지우기

How to check a matrix is multibanded?

조회 수: 1 (최근 30일)
mudasir ahmad sheikh
mudasir ahmad sheikh 2021년 9월 21일
답변: Chunru 2021년 9월 21일
I have a sparse matrix which I need to verify whether it is multibanded or not?

답변 (1개)

Chunru
Chunru 2021년 9월 21일
% Create a banded sparse matrix
B = bucky;
r = symrcm(B)
r = 1×60
1 6 2 5 7 26 30 10 11 12 3 4 8 27 29 9 15 13 16 17 21 25 42 28 43 38 37 14 20 18
a=B(r,r);
imagesc(a);
% Check if it is banded
m = size(a,1); % assuming square matrix
lb = m;
ub = m;
for i=-m+1:0
% check the diagonal
if all(diag(a, i)==0)
lb = i;
else
break
end
end
for i=m-1:-1:0
% check the diagonal
if all(diag(a, i)==0)
ub = i;
else
break
end
end
[lb, ub]
ans = 1×2
-12 12

카테고리

Help CenterFile Exchange에서 Sparse Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by