How to find the original vector given the outer product of the vector?
조회 수: 4 (최근 30일)
이전 댓글 표시
Suppose we have a vector:
psi = rand(n,1) + 1i * rand(n,1);
and we compute its outer product:
outer_product = psi * psi'
Now, given this outer_product, is there a way to retrieve the original vector?
댓글 수: 0
답변 (2개)
Steven Lord
2023년 3월 13일
n = 3;
psi1 = rand(n,1) + 1i * rand(n,1)
outer_product1 = psi1 * psi1'
psi2 = 1i*psi1
outer_product2 = psi2 * psi2'
norm(outer_product1-outer_product2)
outer_product1 and outer_product2 are effectively identical. So if I gave you that outer_product, did I generate it using psi1 or psi2?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Manage Products에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!