def __truediv__()

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


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