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:
Reading an HTTP Response Body as a String in Java
Spring Cloud AWS – Messaging Support
How to Get a Name of a Method Being Executed?
Runnable vs. Callable in Java
Loại bỏ các phần tử trùng trong một ArrayList như thế nào?
Java Program to Delete a Particular Node in a Tree Without Using Recursion
New Features in Java 8
Java Program to Implement Knight’s Tour Problem
Zipping Collections in Java
Java Program to Find Strongly Connected Components in Graphs
Guide to the Synchronized Keyword in Java
ArrayList trong java
Spring Boot - Web Socket
HandlerAdapters in Spring MVC
A Guide to the ViewResolver in Spring MVC
Java Program to Implement the linear congruential generator for Pseudo Random Number Generation
Hamcrest Collections Cookbook
Generating Random Numbers in a Range in Java
A Guide to JUnit 5 Extensions
Java Program to do a Breadth First Search/Traversal on a graph non-recursively
Java – Create a File
Spring Cloud Connectors and Heroku
Spring @RequestParam Annotation
Luồng Daemon (Daemon Thread) trong Java
Một số từ khóa trong Java
Sort a HashMap in Java
Java Program to Compute Discrete Fourier Transform Using the Fast Fourier Transform Approach
Spring Boot - Hystrix
Java – Write an InputStream to a File
Java Program to Implement Queue using Two Stacks
Java Program to Implement Miller Rabin Primality Test Algorithm
Converting a Stack Trace to a String in Java