/// <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); }
public static VectorSpace ColumnSpace(this RealMatrix m) { return(null); }
public static ComplexVector ComplexEigenValues(this RealMatrix m) { throw new NotImplementedException(); }
/// <summary> /// Clone the given matrix /// </summary> /// <param name="m"></param> public RealMatrix(RealMatrix m) : base(m) { }