Advertisement

04.08.2008 at 05:36PM PDT, ID: 23306819
[x]
Attachment Details

Matrix Multiplication Algorithm (C++)

Asked by bejhan in Algorithms, C++ Programming Language

Tags: C++

I need a matrix multiplication algorithm using loops.

Let i = row #;
Let j = column #;
outcome = A x B

So I would want something like:

The for loop order doesn't matter.

Start Free Trial
1:
2:
3:
4:
5:
Matrix outcome;
 
for(int i = 0; i < condition; i++)
for(int j = 0; j < condition; j++)
outcome[i][j] = A... B....
[+][-]04.08.2008 at 05:44PM PDT, ID: 21310971

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.08.2008 at 11:21PM PDT, ID: 21312185

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.12.2008 at 09:19AM PDT, ID: 21341669

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Algorithms, C++ Programming Language
Tags: C++
Sign Up Now!
Solution Provided By: ZeroBugMilkinson
Participating Experts: 4
Solution Grade: A
 
 
[+][-]04.12.2008 at 12:02PM PDT, ID: 21342122

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.12.2008 at 05:04PM PDT, ID: 21343029

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.12.2008 at 05:20PM PDT, ID: 21343061

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628