InputMatrix() public static method

public static InputMatrix ( string FileName, int &n, double &Plot ) : bool
FileName string
n int
Plot double
return bool
Esempio n. 1
0
 public ProfileMatrix(string FilePath) //Конструктор, считывает данные из файла
 {
     if (!InputOutput.InputMatrix(FilePath, out this.n, out this.ia, out this.al, out this.au, out this.di))
     {
         MessageBox.Show("Ошибка ввода матрицы.\nИспользуйте справку (F1).", "Опаньки...", MessageBoxButtons.OK);
     }
 }