help-gsl
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-gsl] matrix multiplication


From: Keymone
Subject: [Help-gsl] matrix multiplication
Date: Wed, 28 Feb 2007 08:36:31 +0200

hello guys

help me please to multiplicate 2 matrices :)

gsl_matrix * A = gsl_matrix_alloc(n, n);
gsl_matrix * B = gsl_matrix_alloc(n, l);
gsl_matrix * AB = gsl_matrix_alloc(n, l);

cblas_dgemm(
       CblasRowMajor,
       CblasNoTrans,
       CblasNoTrans,
       ?, ?, ?, 1.0, ?, ?, ?, ?, 0, ?, ?);

it looks like primitive operation but i can't figure this out
i started with GSL only tomorrow so don't kill me :)

--
Regards, Keymone


reply via email to

[Prev in Thread] Current Thread [Next in Thread]