Question
In which of the little scripts bellow, variable S holds a skew symmetric matrix. Remember a skew symmetric matrix is one whose transpose is the
In which of the little scripts bellow, variable S holds a skew symmetric matrix. Remember a skew symmetric matrix is one whose transpose is the opposite (negative) of the matrix. Use matlab to confirm.
To confirm compute this variable S and check if the norm of the sum of S and its transpose is a very small number, that is norm(S+S'). If it is it is skew symmetric this norm should be a tiny number.
A = rand(20,20); S =A*A-A'*A';
A = rand(20,20); S =A*A+A'*A';
A = rand(20,20); S =A*A^-1;
A = rand(20,20); S =A*A';
A = rand(20,20); S =(eye(20)+A)*(eye(20)-A)';
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started