Meaning of unit vector
조회 수: 87 (최근 30일)
이전 댓글 표시
I've been trying to solve this problem, and I understand the programming part of it. However, I don't understand what it means to start from "the unit vector". Could someone please explain what vector the unit vector is referred to?
Generate the Hilbert matrix A of order n=6 and apply 4 iterations of the inverse power method in order to compute an approximation of the eigenvalue \lambda_p that is the closest to p=0.2, starting from the unit vector. Then, use the command eigs to compute the reference ''exact'' value.
댓글 수: 0
채택된 답변
James Tursa
2017년 6월 25일
편집: James Tursa
2017년 6월 25일
A unit vector is any vector v such that norm(v) = 1. For your case of order n=6, you want a 6 element vector v with norm(v) = 1. Some examples of 6-element unit vectors:
v = [1;0;0;0;0;0]
or
v = [1;1;1;1;1;1]; v = v/norm(v);
or
v = rand(6,1); v = v/norm(v);
Any one of these could be used as a suitable starting vector for your problem.
댓글 수: 0
추가 답변 (1개)
shahd khalid
2020년 4월 3일
how to find the absolute of value
댓글 수: 1
Erfan Hosseini
2021년 10월 6일
U can use the below function:
abs(x);
x is the variable u wanna find its absolute value
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!