Skip to content

Supplementary methods

pyrix.matrix.Matrix.vectorMultiplication()

Abstract Code Description

1
2
3
4
class Matrix:
    ::
    def vectorMultiplication(self, v1):
        ....

details

This method multiplies the vector data list with the matrix and returns a resultant matrix.

parameters:

  • v1: This is the input vector data list (list).

Returns:

  • return: resultant matrix object.

Last update: December 3, 2020