Method: FastMatrix::Matrix::LUPDecomposition#l

Defined in:
ext/fast_matrix/LUPDecomposition/lup.c

#lObject



48
49
50
51
52
53
54
# File 'ext/fast_matrix/LUPDecomposition/lup.c', line 48

VALUE lup_l(VALUE self)
{
	struct lupdecomposition* lp = get_lup_from_rb_value(self);
    MAKE_MATRIX_AND_RB_VALUE(R, result, lp->n, lp->n);
    c_lup_l(lp->n, lp->data, R->data);
    return result;
}