Function scal_subrow (o2scl_cblas)¶
-
template<class mat_t, class fp_t>
void o2scl_cblas::scal_subrow(mat_t &A, const size_t ir, const size_t ic, const size_t N, const fp_t alpha)¶ Compute \( x=\alpha x \) for a subrow of a matrix.
Given the matrix
A
, define the vectorx
as the row with indexir
. This function computes \( x = \alpha x \) for elements in the vectorsx
from columnic
to column(inclusive). All other elements in
x
andy
are not referenced.If
ic
is greater thanN-1
then the error handler will be called ifO2SCL_NO_RANGE_CHECK
is not defined.