Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

Multiplication of n*n matrix takes order of n^3 with the standard multiplication algorithm. We can improve the time component of matrix multiplication to order of n^w where w= log(7)/log(2).

Using Strassen (divide and conquer) algorithm we can improve the time to the exponent of w<=2.38. But this algorithm has a large constant and is not used in practice.

How can we implement a matrix multiplication algorithm that has a good performance for n*n matrix for 10<=n<=1000 by reducing the data stucture of divide and conquer algorithm or by any other improvisation in the divide and conquer algorithm.

share|improve this question
    
If you are a student with homework, please note that homework solution requests are offtopic. If you are not a student, then you should use a library to do this. – Steven Burnap 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.