Example #1
0
        public XML_settings_lab1(UI ui)
        {
            this.lab1_matrix = ui.lab1_matrix.ToArray();
            this.lab1_matrix_size = ui.textBox_lab1_matrix_size.Text;

            this.lab1_gauss_seidel_accuracy = ui.textBox_lab1_gauss_seidel_accuracy.Text;
        }
Example #2
0
        public XML_settings_lab2(UI ui)
        {
            this.lab2_function = ui.comboBox_lab2_function.SelectedItem.ToString();

            this.lab2_chords_start_interval = ui.textBox_lab2_chords_start_interval.Text;
            this.lab2_chords_end_interval = ui.textBox_lab2_chords_end_interval.Text;
            this.lab2_chords_accuracy = ui.textBox_lab2_chords_accuracy.Text;

            this.lab2_newton_initial_approximation = ui.textBox_lab2_newton_initial_approximation.Text;
            this.lab2_newton_accuracy = ui.textBox_lab2_newton_accuracy.Text;
        }
Example #3
0
 public XML_settings_lab5(UI ui)
 {
 }
Example #4
0
        public XML_settings_lab4(UI ui)
        {
            this.lab4_points = ui.lab4_points.ToArray();
            this.lab4_points_count = ui.textBox_lab4_points_count.Text;

            this.lab4_calculate_point = ui.textBox_lab4_calculate_point.Text;
        }
Example #5
0
 public XML_settings_lab3(UI ui)
 {
     this.lab3_matrix = ui.lab3_matrix.ToArray();
     this.lab3_matrix_size = ui.textBox_lab3_matrix_size.Text;
 }