INNER CODE UNIT · Python

cols

webartifex/intro-to-python · 11_classes/sample_package/matrix.py:186

            cols = range(self.n_cols - 1, -1, -1)
        else:
            rows, cols = range(self.n_rows), range(self.n_cols)
        if row_major:
            return (self._entries[r][c] for r in rows for c in cols)
        return (self._entries[r][c] for c in cols for r in rows)

    def __iter__(self):
        """Loop over a Matrix's entries.

        See .entries() for more customization options.
        """
        return self.entries()

    def __reversed__(self):
        """Loop over a Matrix's entries in reverse order.

        See .entries() for more customization options.

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…