svinfer/processor/matrix.py [128:140]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return NotImplemented

    def __radd__(self, other):
        return self.__add__(other)

    def __sub__(self, other):
        return self.__add__(-other)

    def __rsub__(self, other):
        return (-self).__add__(other)

    def __mul__(self, other):
        if isinstance(other, int) or isinstance(other, float):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



svinfer/processor/matrix.py [221:233]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return NotImplemented

    def __radd__(self, other):
        return self.__add__(other)

    def __sub__(self, other):
        return self.__add__(-other)

    def __rsub__(self, other):
        return (-self).__add__(other)

    def __mul__(self, other):
        if isinstance(other, int) or isinstance(other, float):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



