IDEA: First step. Create the 2 matrices. Can you do this part?
I assume you want 2 dimensional arrays of complex numbers.
There is a complex number library available.
to use it #include<complex> in your program. It is in the namespace std.
Here's a link to the reference section on the library: http://www.cplusplus.com/reference/std/complex/
Here's a link to this sites tutorial on arrays: http://www.cplusplus.com/doc/tutorial/arrays/
There is info about multidimensional arrays also in that tutorial.
Here is a sample program showing some basic uses of complex numbers
What fun2code is dancing around: We will help you provided that you will give us something to help with. (almost) No one wants to do your homework for you. We will help take any code you have that is not working, or is lacking, and help finish it, but we won't give you a completed solution.
What exactly is the problem? You can't declare matrices, initialize matrices or multiply them?
Or is thinking of an application for multiplying 2 matrices?????
Be a bit more specific and we can help.
I was rather hoping that you'd realise that multiplying a matrix of double is the same algorithm as multiplying a matrix of int and by induction, multiplying a matirx of complex.
C++ templates allow you to write a general matrix then plug in the type.
So far you've not managed to get these two points, which are the answer to your question. Short of actually doing the assignment for you (which someone appears to have already done), I really don't know how else to help.