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:
Logging a Reactive Sequence
Java Program to Find ith Largest Number from a Given List Using Order-Statistic Algorithm
Giới thiệu Google Guice – Aspect Oriented Programming (AOP)
String Operations with Java Streams
Convert String to int or Integer in Java
Java Program to Implement Skew Heap
Merging Streams in Java
Java Program to Implement Maximum Length Chain of Pairs
Java Program to Implement Interval Tree
Spring Boot with Multiple SQL Import Files
Java Program to Create a Balanced Binary Tree of the Incoming Data
ClassNotFoundException vs NoClassDefFoundError
Java Program to Implement Meldable Heap
Java Program to Implement Slicker Algorithm that avoids Triangulation to Find Area of a Polygon
Java Program to Implement ArrayList API
Spring Boot - Web Socket
Java Program to Implement Leftist Heap
Spring Boot - Enabling Swagger2
Java Program to Find the Shortest Path Between Two Vertices Using Dijkstra’s Algorithm
Guide to WeakHashMap in Java
RestTemplate Post Request with JSON
LIKE Queries in Spring JPA Repositories
Logging in Spring Boot
Spring Boot - Eureka Server
Từ khóa static và final trong java
Spring Security 5 – OAuth2 Login
Java Program to Implement the Edmond’s Algorithm for Maximum Cardinality Matching
Spring Boot - Batch Service
Spring Web Annotations
The SpringJUnitConfig and SpringJUnitWebConfig Annotations in Spring 5
Java equals() and hashCode() Contracts
Một số nguyên tắc, định luật trong lập trình