필터 지우기
필터 지우기

Plot eigenvectors of a square matrix in Matlab

조회 수: 12 (최근 30일)
Mirzobek Malikov
Mirzobek Malikov 2022년 11월 2일
댓글: Mirzobek Malikov 2022년 11월 2일
Let's have a square matrix [1 0; -4 5]. The eigenvectors are [ 0; 1] and [0.7071; 0.7071]. I need to plot these eigenvectors correctly.
A = [1 0; -4 5];
[Eig_vector Eig_value] = eig(A);
  • Here, can we get a correct plot by using plot(Eig_vector)?
  • Or once I have any eigenvector (x; y), by setting origin (inital coordinates) of the vector arbitrarily, should I calculate the last coordinates of the vector and then plot(x(0), eigenvector(x), y(0), eigenvector(y))?

답변 (1개)

KSSV
KSSV 2022년 11월 2일
plot(Eig_vector)
  댓글 수: 1
Mirzobek Malikov
Mirzobek Malikov 2022년 11월 2일
but, how Matlab defines the initial points of the eigenvectors, where do they begin?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Objects에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by