Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Linear Algebra > Eigenvalue and Singular Value > bdiag

bdiag

block diagonalization, generalized eigenvectors

Calling Sequence

[Ab [,X [,bs]]]=bdiag(A [,rmax])

Arguments

A

real or complex square matrix

rmax

real number

Ab

real or complex square matrix

X

real or complex non-singular matrix

bs

vector of integers

Description

[Ab [,X [,bs]]]=bdiag(A [,rmax])

performs the block-diagonalization of matrix A. bs gives the structure of the blocks (respective sizes of the blocks). X is the change of basis i.e Ab = inv(X)*A*Xis block diagonal.

rmax controls the conditioning of X; the default value is the l1 norm of A.

To get a diagonal form (if it exists) choose a large value for rmax (rmax=1/%eps for example). Generically (for real random A) the blocks are (1x1) and (2x2) and X is the matrix of eigenvectors.

Examples

//Real case: 1x1 and 2x2 blocks
a=rand(5,5);[ab,x,bs]=bdiag(a);ab

//Complex case: complex 1x1 blocks
[ab,x,bs]=bdiag(a+%i*0);ab

See Also

  • schur — [ordered] Schur decomposition of matrix and pencils
  • sylv — Sylvester equation.
  • spec — eigenvalues of matrices and pencils
  • sysdiag — Create a block diagonal matrix from provided inputs or block diagonal system connection
Report an issue
<< balanc Eigenvalue and Singular Value gschur >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Oct 02 13:46:48 CEST 2014