Matrix Transpose
Description
Sage can find the transpose of a matrix with the .transpose() method.
Sage Cell
Code
A = matrix(QQ, [[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print(A)
At = A.transpose()
print(At)
Options
none
Tags
Primary Tags:
Secondary Tags:
A list of possible tags can be found at The WeBWorK Open Problem Library. For linear algebra tags see the Curated Courses Project.
Related Cells
Any related cells go here. Provide a link to the page containing the information about the cell.
Attribute
Permalink:
Author:
Date: 17 Jun 2020 19:18
Submitted by: Zane Corbiere