Matrix Multiplication in BLAS & CBLAS
Here is a program that uses dgemm to multiply two matrices: matrix_mult.cpp The dgemm function is implemented using gsl blas. It can be compiled under Cygwin as: gcc -o matrix_mult_alt matrix_mult_alt.cpp -lgsl -lstdc++ And under Ubuntu as: gcc -o matrix_mult_alt matrix_mult_alt.cpp -lgsl -lgslcblas -lstdc++ *… Read more