R = blkdiag(M1, ... , MN)
| Parameter | Description |
|---|---|
| M1, ..., MN | a numeric 2D matrix |
| Parameter | Description |
|---|---|
| R | a matrix. |
R = blkdiag(M1, ... , MN) build the block diagonal matrix created by aligning the input matrices M1, ... , MN along the diagonal of R.
blkdiag(magic(2), magic(3), magic(4))
| Version | Description |
|---|---|
| 1.0.0 | initial version |