Hi Amit,
As far as I can see, mussv does not support repeated, full, complex blocks. Out of curiosity, in what sort of problem does one encounter such an uncertainty structure? However, the block structure can be rearranged to solve a different problem that might (or might not) be of interest.
I'll show an example with Ny = 2 and only two repeated blocks to keep things simpler (and less typing).
Define the full block
delta = sym('delta',[6,2]);
And the full uncertainty block
Delta = blkdiag(delta,delta);
The input to Delta, i.e., the output from M, are two, 2 x 1 vectors.
The output of Delta is then
w = Delta*z
w =

Rearrange the elements of Delta so that instead having two, repeated 6 x 2 blocks we have 6 blocks, where each block is a repeated scalar of one of the elements of delta.
bDelta = [delta(:),delta(:)].';
Now we define a right-side pre-multiplication and left-side post-multiplication on bdelta such that:
L*bdelta*R*z = Delta*z.
R and L are (there's probably a smart way to automate this)
Show the equivalence
sympref('AbbreviateOutput',false)
[L*bDelta*R*z , Delta*z]
ans =

all(isAlways(L*bDelta*R*z == Delta*z))
Now we can analyze how large bdelta can be to maintain loop stability of R*M*L*bdelta instead of how large Delta can be to maintain loop stability of M*Delta.
For example
M = rand(4,12) + 1j*rand(4,12);
Run mussv on R*M*L
[bounds,muinfo] = mussv(R*M*L,repmat([2,0],12,1));
bounds
bounds =
16.4127 16.3555
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Extract the peturbation with the structure of bdelta that corresponds to the lower bound
bdelta = mussvextract(muinfo);
Verify that bdelta makes the loop unstable (eigenvalue at 1)
eig(R*M*L*bdelta)
ans =
1.0000 + 0.0000i
0.0088 + 0.1163i
0.0006 + 0.0011i
0.0004 + 0.0004i
0.0000 - 0.0000i
0.0000 + 0.0000i
0.0000 + 0.0000i
0.0000 - 0.0000i
-0.0000 + 0.0000i
-0.0000 + 0.0000i
0.0000 + 0.0000i
0.0000 - 0.0000i
-0.0000 + 0.0000i
0.0000 - 0.0000i
0.0000 - 0.0000i
-0.0000 + 0.0000i
-0.0000 - 0.0000i
-0.0000 + 0.0000i
0.0000 - 0.0000i
-0.0000 + 0.0000i
-0.0000 + 0.0000i
0.0000 + 0.0000i
-0.0000 - 0.0000i
0.0000 - 0.0000i
Compute Delta from bdelta and verify that Delta makes the loop unstable
eig(M*Delta)
ans =
1.0000 + 0.0000i
0.0088 + 0.1163i
0.0006 + 0.0011i
0.0004 + 0.0004i
However, the norm of bdelta is quite a bit smaller than the norm of Delta and, I believe, it's possible that there might exist a different Delta with smaller norm that also makes the M*Delta loop unstable.
[max(svd(bdelta)), 1/bounds(2)]
ans =
0.0611 0.0611
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Like I said, we're solving a different problem than posed, but maybe it can still provide useful information for the problem of interest. Maybe.