This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
######### class Matrix with display() function for image visualization | |
############################################################################# | |
class Matrix: | |
""" | |
Represents a rectangular matrix with n rows and m columns. | |
""" | |
def __init__(self, n, m, val=0): |