Nothing but the usual matrix multiplication function you create by yourself
this is multiplies A and B yielding product matrix C with the dimension in order
void mat_prod(double c[M][P], double a[M][N],
double b[N][P])
{
int i,j,k;
for (i=0; i<M; ++i)
for (j=0; j<P...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.