def __rtruediv__()

in svinfer/processor/matrix.py [0:0]


    def __rtruediv__(self, other):
        if isinstance(other, int) or isinstance(other, float):
            return NumpyMatrix(other / self.value)
        if isinstance(other, NumpyMatrix):
            return NumpyMatrix(other.value / self.value)
        return NotImplemented