Given the matrix 𝐴, use MATLAB to compute 𝐴𝐴 𝑡 .
Show older comments
I dont konw how to add t in matlab,there is no t value, and how to find matrix is symmetric?

2 Comments
Ravi Narasimhan
on 20 Sep 2021
for a couple of options on how to get the transpose of a matrix.
Walter Roberson
on 20 Sep 2021
To expand on Ravi's answer:
When using Linear Algebra,
Answers (1)
For a real matrix, A' is Matlab code for the transpose of A. Therefore:
A=[6,-2,-1,0;3,-5,0,-3;10,5,0,-1;-1,3,4,1];
B=A*A';
disp(B)
You can verify that
C=A'*A
gives the same result.
1 Comment
Walter Roberson
on 20 Sep 2021
A'*A gives the same result only if A is square.
Categories
Find more on MuPAD in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!