determining linear independence among two vectors using least square method
조회 수: 6 (최근 30일)
이전 댓글 표시
hello! I want to determine the linear independence between two columns of a matrix... using the first column elements to fit second column elements using least squares method and also to calculate the error between second column and the estimated vector.. the columns of the matrix are circularly shifted (shifting by one) elements of the first vector.. Thanks in advance !
댓글 수: 0
답변 (2개)
the cyclist
2020년 3월 31일
If your two vectors are v1 and v2, then you could use the corrcoef function to calculate the correlation coefficient and its p-value:
[r p] = corrcoef(v1,v2);
You could choose a value of p (perhaps p < 0.05) to say that the linear correlation between the two vectors is unlikely to be from random sampling.
the cyclist
2020년 3월 31일
댓글 수: 3
the cyclist
2020년 4월 9일
I'm confused, too.
I don't understand the page of text that you pasted, possibly because there is not enough context, and I don't recognize the method.
I'm not confident I can help here, but it's possible.
Can you give a little more context about the method/procedure? Does it have a name?
What is "x" in the above text? It would be helpful to understand both conceptually what it is, and have an example. Can you post something in a MAT file?
Similarly, what is p_ini?
참고 항목
카테고리
Help Center 및 File Exchange에서 Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
