Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: hamoudy
  • Order by date
  1. hamoudy

    Matrix Math

    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...

Part and Inventory Search

Back
Top