This is a java program to perform a simple matrix multiplication. For matrix multiplication to happen the column of the first matrix should be equal to the row of the second matrix.
Here is the source code of the Java Program to Perform Matrix Multiplication. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
// This is sample program for matrix multiplication // The complexity of the algorithm is O(n^3) package com.sanfoundry.numerical; import java.util.Scanner; public class MatixMultiplication { public static void main(String args[]) { int n; Scanner input = new Scanner(System.in); System.out.println("Enter the base of squared matrices"); n = input.nextInt(); int[][] a = new int[n][n]; int[][] b = new int[n][n]; int[][] c = new int[n][n]; System.out.println("Enter the elements of 1st martix row wise \n"); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { a[i][j] = input.nextInt(); } } System.out.println("Enter the elements of 2nd martix row wise \n"); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { b[i][j] = input.nextInt(); } } System.out.println("Multiplying the matrices..."); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { for (int k = 0; k < n; k++) { c[i][j] = c[i][j] + a[i][k] * b[k][j]; } } } System.out.println("The product is:"); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { System.out.print(c[i][j] + " "); } System.out.println(); } input.close(); } }
Output:
$ javac MatixMultiplication.java $ java MatixMultiplication Enter the base of squared matrices: 3 Enter the elements of 1st martix row wise: 1 2 3 4 5 6 7 8 9 Enter the elements of 2nd martix row wise: 2 3 4 5 6 7 8 9 1 Multiplying the matrices... The product is: 36 42 21 81 96 57 126 150 93
Related posts:
Spring Boot - Database Handling
Java Program to Check the Connectivity of Graph Using DFS
Java Program to Implement Aho-Corasick Algorithm for String Matching
DynamoDB in a Spring Boot Application Using Spring Data
Remove HTML tags from a file to extract only the TEXT
Removing all duplicates from a List in Java
Display Auto-Configuration Report in Spring Boot
Spring @Primary Annotation
Sort a HashMap in Java
Compare Two JSON Objects with Jackson
Hướng dẫn Java Design Pattern – Dependency Injection
Xử lý ngoại lệ đối với trường hợp ghi đè phương thức trong java
Functional Interface trong Java 8
Spring Webflux and CORS
4 tính chất của lập trình hướng đối tượng trong Java
Spring Data Java 8 Support
Spring Boot - Internationalization
Configure a Spring Boot Web Application
Java Program to Implement Gabow Algorithm
LinkedList trong java
More Jackson Annotations
Java Program to Implement LinkedBlockingQueue API
Prevent Brute Force Authentication Attempts with Spring Security
Java 8 and Infinite Streams
Java Program to Perform Searching in a 2-Dimension K-D Tree
Java Program to Implement Bubble Sort
Build a REST API with Spring and Java Config
Hashing a Password in Java
Introduction to Spring Boot CLI
Creating Docker Images with Spring Boot
Jackson Ignore Properties on Marshalling
Getting a File’s Mime Type in Java