Variance between two vectors

3 views (last 30 days)
Stewart Tan
Stewart Tan on 15 Sep 2019
Answered: John D'Errico on 15 Sep 2019
I have two vectors:
testvec1 = [4.3 9.1 3.3 7.7];
testvec2 = [8.1 3.2 5.4 8.5];
and i want to calculate the variance between the pair of vectors.

Answers (1)

John D'Errico
John D'Errico on 15 Sep 2019
The variance between two vectors is something that seems to be a bit ambiguous in meaning. I can think f at east a couple of ways you MIGHT have intended your request.
Perhaps you are asking how to compute a covariance matrix. Such a matrix would be a symmetric 2x2 matrix, contaiining elements for the variance of each vector, as well as the covariance between the two vectors.
If that is what you want, then you should read the help for the function cov, which should be perfect.
But if you want something else, then you need to more carefully explain your need.

Categories

Find more on MATLAB 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!