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:
New Features in Java 15
Guide to the Java Queue Interface
Mockito and JUnit 5 – Using ExtendWith
Dockerizing a Spring Boot Application
Static Content in Spring WebFlux
Spring Security OAuth2 – Simple Token Revocation
Java Program to Implement PriorityBlockingQueue API
New Features in Java 11
Use Liquibase to Safely Evolve Your Database Schema
Guide to java.util.concurrent.Locks
Java Program to Implement ConcurrentLinkedQueue API
Service Registration with Eureka
Send email with authentication
Removing Elements from Java Collections
Java Program to Solve a Matching Problem for a Given Specific Case
Tiêu chuẩn coding trong Java (Coding Standards)
Hướng dẫn Java Design Pattern – Null Object
Java Program to Implement Bubble Sort
Java Program to Implement Hash Tables Chaining with List Heads
Guide to Guava Table
Apache Commons Collections BidiMap
Java Program to Implement the Program Used in grep/egrep/fgrep
Error Handling for REST with Spring
Split a String in Java
Java Program to do a Depth First Search/Traversal on a graph non-recursively
Java Program to Implement Expression Tree
Java Program to Implement Stack using Linked List
Hướng dẫn sử dụng Java String, StringBuffer và StringBuilder
The Difference Between map() and flatMap()
Check If Two Lists are Equal in Java
Comparing Two HashMaps in Java
Java Program to Generate All Subsets of a Given Set in the Gray Code Order