Multiply matrix by a vector recursively without loops in python

Viewed 38

Is there a way to multiply a matrix by a vector without loops i.e. recursively so that the return value is a list that represents a vector? The function signature is mul(matrix, vector, i=0,j=0) for the sake of the question.

0 Answers
Related