Beispiel #1
0
 /// <summary>
 /// Raises matrix to the spcified power.
 /// </summary>
 public virtual Matrix Power(int power)
 {
     return(new Matrix(MatrixFunctions.Power(this.InnerMatrix, power)));
 }