C# Class toop_project.InputOutput

Afficher le fichier Open project: ProjectSun/toop-project

Méthodes publiques

Méthode Description
InputGenericN ( string fileName ) : int
InputGenericSparseMatrix ( string fileName, int _n ) : BaseMatrix
InputMatrix ( string fileName ) : BaseMatrix
InputVector ( string fileName ) : Vector
OutputGenericMatrix ( string fileName, BaseMatrix matrix ) : void
OutputVector ( string fileName, Vector vector, bool useDots ) : void

Private Methods

Méthode Description
InputBandMatrix ( string fileContent ) : BaseMatrix
InputDenseMatrix ( string fileContent ) : BaseMatrix
InputDiagonalMatrix ( string fileContent ) : BaseMatrix
InputSkylineMatrix ( string fileContent ) : BaseMatrix
InputSparseMatrix ( string fileContent ) : BaseMatrix
NormaliseIA ( int ia ) : void
ReadDouble ( StreamReader streamReader ) : double
ReadDouble ( StreamReader streamReader, int n ) : double[]
ReadInt ( StreamReader streamReader ) : int
ReadInt ( StreamReader streamReader, int n ) : int[]

Method Details

InputGenericN() public static méthode

public static InputGenericN ( string fileName ) : int
fileName string
Résultat int

InputGenericSparseMatrix() public static méthode

public static InputGenericSparseMatrix ( string fileName, int _n ) : BaseMatrix
fileName string
_n int
Résultat toop_project.src.Matrix.BaseMatrix

InputMatrix() public static méthode

public static InputMatrix ( string fileName ) : BaseMatrix
fileName string
Résultat toop_project.src.Matrix.BaseMatrix

InputVector() public static méthode

public static InputVector ( string fileName ) : Vector
fileName string
Résultat toop_project.src.Vector_.Vector

OutputGenericMatrix() public static méthode

public static OutputGenericMatrix ( string fileName, BaseMatrix matrix ) : void
fileName string
matrix toop_project.src.Matrix.BaseMatrix
Résultat void

OutputVector() public static méthode

public static OutputVector ( string fileName, Vector vector, bool useDots ) : void
fileName string
vector toop_project.src.Vector_.Vector
useDots bool
Résultat void