874 views

2 Answers

0 votes
0 votes

Strassen’s Algorithm is an efficient algorithm to multiply two matrices. A simple method to multiply two matrices need 3 nested loops and is O(n^3). Strassen’s algorithm multiplies two matrices in O(n^2.8974) time.

You should know some stuffs, might be useful..

Related questions

1 votes
1 votes
4 answers
1
0 votes
0 votes
1 answer
3