⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 solvelinearequations3.java

📁 原创的线性方程组求解程序
💻 JAVA
字号:
/**
 * @(#)SolveLinearEquations.java
 * @xiong 
 * @version 1.00 2008/7/2
 */

public class SolveLinearEquations3 
{
    public static void main(String[] args) 
    {
    	LinearEquations3 mylinearEquations = new LinearEquations3(); 
    	mylinearEquations.inputAugmentedMatrix(); //Input Augmented Matrix
    	if(mylinearEquations.gaussElimination_column_select()) //Gauss elimination algorithm
	   		System.out.printf("\nGauss Failed!"); //Absolute values of coefficients are too small.Gauss elimination algorithm isn't suitable for this case
   		else
   		{
      		System.out.println("\nFinal result of linear equations is: ");
	  		mylinearEquations.matrixOneColumnOutput(); //Output the result
   		}
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -