determining linear independence among two vectors using least square method

5 views (last 30 days)
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 !

Answers (2)

the cyclist
the cyclist on 31 Mar 2020
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.
  1 Comment
neha pal
neha pal on 31 Mar 2020
thankyou for answering but how will this find the linear independency using the least square fit? i will attach what i exactly want to do..

Sign in to comment.


the cyclist
the cyclist on 31 Mar 2020
If you have the Statistics and Machine Learning Toolbox, then you can use the fitlm function.
  3 Comments
the cyclist
the cyclist on 9 Apr 2020
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?
neha pal
neha pal on 9 Apr 2020
the method is optimal parameter search criterion... for finding the optimal model order for an auto regression process.. to find the breathing rate of the data samples.. x is the data here.. arranged in a time series vector.. Pini is the initial model order assumed.. i have attached the .mat file which has x as the columns..
here is the link to the paper that i need to follow..

Sign in to comment.

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!