matrix multiplication
Brian Gough
bjg@network-theory.co.uk
Wed Jul 24 15:25:00 GMT 2002
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
More information about the Gsl-discuss
mailing list