Description Usage Arguments Details Value Author(s) Examples
Performs the matrix power opperation.
| 1 | MatrixPower(A, n)
 | 
| A | A square matrix. | 
| n | An integer telling the exponent. | 
Only well defined for integers the matrix power opperation is a convenience function to multipy a matrix, A, with itself n times.
A matrix of the same dimention as A.
Andrew Redd <aredd at stat.tamu.edu>
| 1 2 3 4 5 | A<-rbind(0,cbind(diag(1:5),0))  #a nilpotent matrix
A
MatrixPower(A,3)
MatrixPower(A,5)
MatrixPower(A,6)    #Gets to a zero matrix
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.