[R] multiply matrix by a scalar

2003-01-15 Thread Mehmet Balcilar
This is not the correct group to post this question. Sorry, but I subscribe nowhere else. What is the BLAS routine to multiply a matrix by a scalar? Thanks. -- Mehmet Balcilar, PhD Assistant Professor Manas University College of Economics & Administrative Sciences Department of Economics Prospe

Re: [R] multiply matrix by a scalar

2003-01-15 Thread Douglas Bates
Mehmet Balcilar <[EMAIL PROTECTED]> writes: > This is not the correct group to post this question. Sorry, but I > subscribe nowhere else. > > > What is the BLAS routine to multiply a matrix by a scalar? I suppose you could use dgemm with alpha = 0. and dummy arguments for A and B. I don't know