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.
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.