Description Usage Arguments Value Examples
Function used to solve Sylvester equation AX + XB = C.
This Package contains a function called Solvesylvester()
This function can be used to solve standard sylvester equations like AX + XB = C, where A, B, C are all square matrices with same dimensions.
Also, this function allows input matrices and real numbers, if real number is 0, it will degenerate to simple matrix equation.
Input can be (Matrix, number, Matrix)
or (number, Matrix, Matrix)
or (Matrix, Matrix, Matrix)
, other input are not supported.
1 | SolveSylvester(A, B, C)
|
A |
A square Matrix or a real number, |
B |
A square Matrix or a real number. |
C |
A Matrix fits certain conditions. |
A solve of AX + XB = C
, which is a Matrix.
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.