MatrixEntry# class pyspark.mllib.linalg.distributed.MatrixEntry(i, j, value)[source]# Represents an entry of a CoordinateMatrix. Just a wrapper over a (int, int, float) tuple. Parameters iintThe row index of the matrix. jintThe column index of the matrix. valuefloatThe (i, j)th entry of the matrix, as a float.