Is there a way to find number of blocks in a matrix?

3 Ansichten (letzte 30 Tage)
Omar B.
Omar B. am 15 Jun. 2021
Kommentiert: Omar B. am 15 Jun. 2021
I have a matrix that has 5 blocks along the diagonal and two consecutive blocks overlap in one diagonal element.
How can I compute the number of blocks in MATLAB?
  3 Kommentare
Omar B.
Omar B. am 15 Jun. 2021
As an example:
A=[1 2 0 0 0 0 0 0 0;3 4 5 6 0 0 0 0 0; 0 7 8 9 0 0 0 0 0; 0 1 2 3 4 5 0 0 0;0 0 0 1 2 3 0 0 0;0 0 0 1 2 3 4 5 0;0 0 0 0 0 1 2 3 0;0 0 0 0 0 1 2 3 4; 0 0 0 0 0 0 0 1 2]
How can I compute the number of blocks in MATLAB?
Joseph Cheng
Joseph Cheng am 15 Jun. 2021
can you explain what you mean by a block?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stephen23
Stephen23 am 15 Jun. 2021
Bearbeitet: Stephen23 am 15 Jun. 2021
Assuming that the blocks do not contain zeros:
A = [1,2,0,0,0,0,0,0,0;3,4,5,6,0,0,0,0,0;0,7,8,9,0,0,0,0,0;0,1,2,3,4,5,0,0,0;0,0,0,1,2,3,0,0,0;0,0,0,1,2,3,4,5,0;0,0,0,0,0,1,2,3,0;0,0,0,0,0,1,2,3,4;0,0,0,0,0,0,0,1,2]
A = 9×9
1 2 0 0 0 0 0 0 0 3 4 5 6 0 0 0 0 0 0 7 8 9 0 0 0 0 0 0 1 2 3 4 5 0 0 0 0 0 0 1 2 3 0 0 0 0 0 0 1 2 3 4 5 0 0 0 0 0 0 1 2 3 0 0 0 0 0 0 1 2 3 4 0 0 0 0 0 0 0 1 2
[R,~] = find(diff(~A,1,1)>0);
N = 1+numel(unique(R))
N = 5
If the blocks can contain zeros, then you will probably need to use some pattern matching.

Weitere Antworten (0)

Kategorien

Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by