Matrix multiplication | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Matrix multiplication

I want multiply two matrix in java

19th Jan 2017, 1:31 PM
Ahmed Ali Fouad Ismail
Ahmed Ali Fouad Ismail - avatar
2 Answers
0
Two matrices A(M X N) and B(P X Q) can be multiplied if and only if N is equal to P. The product of two matrices A(M X N) and B(N X Q), denoted by A x B, is a matrix of dimension M × Q. Here is the Java program to multiply two matrix http://www.techcrashcourse.com/2017/04/java-program-for-matrix-multiplication.html C program : http://www.techcrashcourse.com/2015/03/c-program-for-matrix-multiplication.html
16th Apr 2017, 7:06 PM
Arun Kumar
Arun Kumar - avatar