This is java program to convert the system of linear equations to matrix form. The input is the coefficient of each variable and constant. Class rearranges them and converts them into matrix form, which aids solving them.
Here is the source code of the Java Program to Represent Linear Equations in Matrix Form. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
//This is a sample program to represent linear equations into matrix from
import java.util.Scanner;
public class Matrix_Representation_Equations
{
public static void main(String args[])
{
char []var = {'x', 'y', 'z', 'w', 'a', 'b', 'c', 'd', 'e'};
System.out.println("Enter the number of variables in the equations: ");
Scanner input = new Scanner(System.in);
int n = input.nextInt();
System.out.println("Enter the coefficients of each variable for each equations");
System.out.println("ax + by + cz + ... = d");
int [][]mat = new int[n][n];
int [][]constants = new int[n][1];
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
mat[i][j] = input.nextInt();
}
constants[i][0] = input.nextInt();
}
System.out.println("Matrix representation is: ");
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
System.out.print(" "+mat[i][j]);
}
System.out.print(" "+ var[i]);
System.out.print(" = "+ constants[i][0]);
System.out.println();
}
input.close();
}
}
Output:
$ javac Matrix_Representation_Equations.java $ java Matrix_Representation_Equations Enter the number of variables in the equations: 3 Enter the coefficients of each variable for each equations: ax + by + cz + ... = d 1 2 3 4 5 6 7 8 9 0 1 2 Matrix representation is: 1 2 3 x = 4 5 6 7 y = 8 9 0 1 z = 2
Related posts:
wait() and notify() Methods in Java
Sử dụng JDBC API thực thi câu lệnh truy vấn dữ liệu
Get and Post Lists of Objects with RestTemplate
Hướng dẫn Java Design Pattern – Memento
Java – Reader to InputStream
Checked and Unchecked Exceptions in Java
ETags for REST with Spring
Java Program to find the maximum subarray sum using Binary Search approach
Java Program to Find Basis and Dimension of a Matrix
REST Web service: Tạo ứng dụng Java RESTful Client với Jersey Client 2.x
Java Program to Implement Leftist Heap
Java Program to Implement Hash Trie
Giới thiệu luồng vào ra (I/O) trong Java
Converting Java Date to OffsetDateTime
Java Program to Implement Karatsuba Multiplication Algorithm
Calculating the determinant of a matrix by Gauss
So sánh Array và ArrayList trong Java
Convert Time to Milliseconds in Java
Java Program to Perform Quick Sort on Large Number of Elements
The Spring @Controller and @RestController Annotations
Lớp HashMap trong Java
Đồng bộ hóa các luồng trong Java
Guide to Java OutputStream
What is a POJO Class?
Functional Interfaces in Java 8
Spring JDBC
Giới thiệu Design Patterns
Hướng dẫn Java Design Pattern – State
Java – Convert File to InputStream
List Interface trong Java
Convert String to Byte Array and Reverse in Java
So sánh ArrayList và LinkedList trong Java