This is the mail archive of the gsl-discuss@sources.redhat.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: matrix multiplication


Daniel T Konkle writes:
 >  I need to implement S = A' * A where A' is the transpose of A.
 >  Is it possible to do it like this:
 >  gsl_blas_dgemm( CblasTrans, CblasNoTrans, 1.0, A, A, 0.0, S );
 >  or do I need to copy the contents of a into a temporary matrix
 > first
 >  gsl_matrix_memcpy( B, A ); gsl_blas_dgemm( CblasTrans,
 > CblasNoTrans, 1.0, A, B, 0.0, S );

If you look at the function definition in the gsl_blas.h header file
or the manual the 'const' keyword shows which arguments are not
modified.

regards
Brian Gough


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]