Apr 19, 2011 at 12:04am UTC
I have 2 matrices that I need to multiply.
One is x by x, and the other is x by y.
I know it will need for loops but I can't figure it out.
they are stored as arrays:
a[x][x]
b[x][y]
Thanks everyone.
Apr 19, 2011 at 12:21am UTC
Yes I do know how to do it by hand, and I know they only need share one dimension, but for they scope of my project, they will.
Thanks.
I was just confused as to how many loops I'd need, thanks a lot.
Its just tough getting the computer to do it sometimes. :)
Apr 19, 2011 at 12:31am UTC
Heh, heh, heh...
Programming the computer is just an exercise in programming your own mind.
Good programmers are the ones who learn how to translate what goes on in their head into making the computer do it...
:-)
Apr 19, 2011 at 12:38am UTC
Exactly, I got it to work, thank god.
It makes my brain hurt sometimes, but I love it.
I think its so cool that you can make the computer do exactly what you want it to.