Ejemplo n.º 1
0
 /// <summary>
 /// Gets the eigenbasis of the given matrix and eigenvalue l.
 /// </summary>
 /// <param name="m"></param>
 /// <returns></returns>
 public static Basis EigenBasis(this RealMatrix m, Real l)
 {
     return(null);
 }
Ejemplo n.º 2
0
 public static VectorSpace ColumnSpace(this RealMatrix m)
 {
     return(null);
 }
Ejemplo n.º 3
0
 public static ComplexVector ComplexEigenValues(this RealMatrix m)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Clone the given matrix
 /// </summary>
 /// <param name="m"></param>
 public RealMatrix(RealMatrix m) : base(m)
 {
 }