Strassen’s algorithm for matrix multiplication using index calculations in java
This builds on the previous post on recursive square matrix multiplication. The steps of the Strassen’s method from Introduction to Algorithms, Third edition is as follows: Divide the input matrices A and B and output matrix C into n/2 x n/2 submatrices, as in equation (4.9). Create 10 matrices S1, S2,…, S10 , each of […]