def cross()

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


    def cross(self, other):
        assert isinstance(other, SqlMatrix)
        result = []
        for j in range(other.ncol):
            for i in range(self.ncol):
                result.append(self.value[i] * other.value[j])
        return SqlMatrix(result, dim=(self.ncol, other.ncol))