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:
Java – Write a Reader to File
Java Program to Construct a Random Graph by the Method of Random Edge Selection
Reversing a Linked List in Java
Java Program to Implement Singly Linked List
Optional trong Java 8
Exception Handling in Java
Java Program to Implement Euclid GCD Algorithm
Java Program to Implement Queue using Two Stacks
Giới thiệu SOAP UI và thực hiện test Web Service
Spring Boot - Hystrix
Java Program to Implement Binary Search Tree
Java Program to Generate N Number of Passwords of Length M Each
Java Program to Implement CopyOnWriteArraySet API
Java Program to Implement Graham Scan Algorithm to Find the Convex Hull
Java Program to Sort an Array of 10 Elements Using Heap Sort Algorithm
Most commonly used String methods in Java
Java – Convert File to InputStream
New Stream Collectors in Java 9
Luồng Daemon (Daemon Thread) trong Java
Java Program to Generate Random Partition out of a Given Set of Numbers or Characters
Introduction to the Java NIO2 File API
Java Program to Find Minimum Element in an Array using Linear Search
Guide to the Java Queue Interface
Hướng dẫn Java Design Pattern – Transfer Object
Testing an OAuth Secured API with Spring MVC
Hướng dẫn Java Design Pattern – Decorator
Introduction to the Java NIO Selector
Spring @RequestMapping New Shortcut Annotations
Comparing Objects in Java
Tránh lỗi NullPointerException trong Java như thế nào?
Hashtable trong java
HttpClient 4 – Follow Redirects for POST