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:
Ignore Null Fields with Jackson
Send email with authentication
Java Program to Implement the Edmond’s Algorithm for Maximum Cardinality Matching
Introduction to Spring Data JDBC
Batch Processing with Spring Cloud Data Flow
Java Program to Implement Self Balancing Binary Search Tree
Java Program to Check Whether an Input Binary Tree is the Sub Tree of the Binary Tree
Giới thiệu JDBC Connection Pool
Spring @Primary Annotation
Spring AMQP in Reactive Applications
Logging in Spring Boot
Configure a Spring Boot Web Application
Little Artem and Matrix
More Jackson Annotations
Java Program to Implement an Algorithm to Find the Global min Cut in a Graph
Case-Insensitive String Matching in Java
Spring Security Authentication Provider
Hướng dẫn Java Design Pattern – Dependency Injection
Java Program to Implement Min Hash
Immutable Map Implementations in Java
Calculating the determinant of a matrix by Gauss
Spring Boot - Quick Start
Java Program to Implement AttributeList API
Java Program to Implement wheel Sieve to Generate Prime Numbers Between Given Range
Migrating from JUnit 4 to JUnit 5
Show Hibernate/JPA SQL Statements from Spring Boot
Java Program to Implement AA Tree
A Guide to the Java ExecutorService
Java Program to Find a Good Feedback Edge Set in a Graph
So sánh ArrayList và LinkedList trong Java
An Intro to Spring Cloud Zookeeper
Configuring a DataSource Programmatically in Spring Boot