Member of the linalgebra class.
[t, b] = balance(a)
Balances a matrix to improve the accuracy of eigenvalues and eigenvectors that you compute.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| t | Returns a permutation of the diagonal matrix. |
| b | Returns the balanced matrix a such that the column and row norms are approximately the same. |
LabVIEW computes balance(a) using the following equation: b = t\a*t.
A = [1000, 1000; 0.001, 1]
[T, B] = balance(A)