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 Web Services – JAX-WS – SOAP
Shuffling Collections In Java
Connect through a Proxy
Java Program to Implement wheel Sieve to Generate Prime Numbers Between Given Range
HashMap trong Java hoạt động như thế nào?
Concrete Class in Java
Hướng dẫn Java Design Pattern – Facade
Add Multiple Items to an Java ArrayList
Java Program to Implement LinkedHashSet API
Jackson JSON Views
Java Program to Remove the Edges in a Given Cyclic Graph such that its Linear Extension can be Found
Spring Boot - OAuth2 with JWT
Introduction to Using FreeMarker in Spring MVC
New Features in Java 15
Jackson – Marshall String to JsonNode
Giới thiệu Swagger – Công cụ document cho RESTfull APIs
Java Program to Implement Weight Balanced Tree
Spring Boot - Introduction
Guide to System.gc()
Hướng dẫn sử dụng Printing Service trong Java
Spring Webflux and CORS
REST Web service: Basic Authentication trong Jersey 2.x
Java Program to Implement Sieve Of Eratosthenes
Java IO vs NIO
Java Program to Implement Rolling Hash
Java Program to Implement Stack API
Comparing Arrays in Java
Consumer trong Java 8
Using the Not Operator in If Conditions in Java
Java Program to Perform Searching in a 2-Dimension K-D Tree
Hướng dẫn Java Design Pattern – Adapter
Java List UnsupportedOperationException