1
0

Major changes preparing to satisfy given test_serial.py

This commit is contained in:
2024-01-18 16:02:20 +01:00
parent c837b75604
commit e914001d8d
5 changed files with 278 additions and 8 deletions

View File

@@ -87,6 +87,14 @@ class Matrix:
"""
return Matrix(self.__data__.transpose())
def T(self):
"""
Same as ``matrix.transpose()``
:return: see ``matrix.transpose()``
"""
return self.transpose()
def __eq__(self, other):
"""
Return ``self==value``