photo

Arooj Ibrahim


Active since 2019

Followers: 0   Following: 0

Statistics

  • Thankful Level 1

View badges

Feeds

View by

Question


I need to have eigenvalues of this matrix including symbols "m" and "n"
clear all m=sym('m') n=sym('n') A=sym([0 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m)...

4 years ago | 2 answers | 0

2

answers

Answered
what command should i use to have real part of the eigenvalues of the matrix in symbolic form
clear all m=sym('m') n=sym('n') A=sym([0 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m) 1/sqrt(3*n*m)...

4 years ago | 0

Question


what command should i use to have real part of the eigenvalues of the matrix in symbolic form
clear all m=sym('m') n=sym('n') A=[0 1 1/sqrt(3*n*m); 2 4 2/sqrt(3*n*m); 3 4 5/sqrt(3*n*m)] eig(A) I need to find the ei...

4 years ago | 2 answers | 0

2

answers