matrix multiplication using wildcard in C/C++
I am not very much familiar to C/C++ and i am just looking for doing a matrix multiplication using C/C++.
i have a large number of matrix str1,str2.....etc.
what i am looking for is :
ii it possible to use a wildcard to do the matrix multiplication like:
res=del[k]*str$i[k][j]
as in shell script?
or can you suggest me a more efficient algorithm?
looking for your kind help
thanx in advance
|