Difference between revisions of "Manuals/calci/BIDIAGONAL"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''BIDIAGONAL'''</div><br/>") |
|||
Line 1: | Line 1: | ||
− | <div style="font-size:30px">'''BIDIAGONAL'''</div><br/> | + | <div style="font-size:30px">'''MATRIX("BIDIAGONAL",order)'''</div><br/> |
+ | *<math>order</math> is the size of the Bidiagonal matrix. | ||
+ | |||
+ | ==Description== | ||
+ | *This function returns the matrix with the property of bidiagonal. | ||
+ | *A bidiagonal matrix has non zero entries only on the main bidiagonal and either the first super-diagonal and first sub-diagonal. | ||
+ | *In Calci,users will get different types of bidiagonal matrices. | ||
+ | *There are two types are there lower bidiagonal and upper bidiagonal. | ||
+ | *When the diagonal below the main diagonal has the non-zero entries the matrix is lower bidiagonal. | ||
+ | *When the diagonal above the main diagonal has the non-zero entries the matrix is upper bidiagonal. | ||
+ | *The example of lower bidiagonal matrix is: | ||
+ | <math>A=\begin{pmatrix} | ||
+ | 62 & 0 & 0 & 0 \\ | ||
+ | -60 & 69 & 0 & 0 \\ | ||
+ | 0 & -52 & 65 & 0 \\ | ||
+ | 0 & 0 & -18 & 1 \\ | ||
+ | \end{pmatrix} </math> | ||
+ | *The example of a upper bidiagonal matrix is: | ||
+ | <math>A=\begin{pmatrix} | ||
+ | 56 & 18 & 0 & 0 \\ | ||
+ | 0 & -33 & -55 & 0 \\ | ||
+ | 0 & 0 & -2 & -60 \\ | ||
+ | 0 & 0 & 0 & -9 \\ | ||
+ | \end{pmatrix} </math> | ||
+ | *The syntax of lower and upper bidiagonal matrices are MATRIX("lowerbidiagonal") or MATRIX("lower-bidiagonal") and MATRIX("upperbidiagonal") or MATRIX("upper-bidiagonal") |
Revision as of 12:00, 5 May 2015
MATRIX("BIDIAGONAL",order)
- is the size of the Bidiagonal matrix.
Description
- This function returns the matrix with the property of bidiagonal.
- A bidiagonal matrix has non zero entries only on the main bidiagonal and either the first super-diagonal and first sub-diagonal.
- In Calci,users will get different types of bidiagonal matrices.
- There are two types are there lower bidiagonal and upper bidiagonal.
- When the diagonal below the main diagonal has the non-zero entries the matrix is lower bidiagonal.
- When the diagonal above the main diagonal has the non-zero entries the matrix is upper bidiagonal.
- The example of lower bidiagonal matrix is:
- The example of a upper bidiagonal matrix is:
- The syntax of lower and upper bidiagonal matrices are MATRIX("lowerbidiagonal") or MATRIX("lower-bidiagonal") and MATRIX("upperbidiagonal") or MATRIX("upper-bidiagonal")