| Type: | Package | 
| Title: | Solving Quadratic Matrix Equations | 
| Version: | 0.1.0 | 
| Author: | Kasa | 
| Maintainer: | Siva Rajesh Kasa <sivarajesh.kasa@gmail.com> | 
| Description: | Given inputs A,B and C, this package solves the matrix equation A*X^2 - B*X - C = 0. | 
| License: | GPL-2 | 
| Encoding: | UTF-8 | 
| LazyData: | FALSE | 
| Imports: | matrixcalc,geigen | 
| Suggests: | knitr | 
| RoxygenNote: | 6.1.0 | 
| NeedsCompilation: | no | 
| Packaged: | 2018-08-11 01:58:49 UTC; sivarajesh | 
| Repository: | CRAN | 
| Date/Publication: | 2018-08-13 14:40:03 UTC | 
Solving Quadratic Matrix Equations
Description
Given inputs A,B and C, this package solves the matrix equation A*X^2 - B*X - C = 0.
Usage
quadmatrix(A, B, C)
Arguments
| A | A Matrix | 
| B | A Matrix | 
| C | A Matrix | 
Value
Matrix X
Examples
B = matrix(c(1,3,3,1),nrow = 2,ncol = 2)
A = matrix(c(1.5,2,2,1.5),nrow = 2,ncol = 2)
C = matrix(c(1.5,1,1,1.5),nrow = 2,ncol = 2)
quadmatrix(A,B,C)