필터 지우기
필터 지우기

Calculate the correlation coefficient between the first and the second measurement and the correlation coefficient between the first and the third measurement.

조회 수: 1 (최근 30일)
I need to help in finding the correlation coefficient between the first and the second measurement and the correlation coefficient between the first and the third measurement. Please view the attached matlab file.
Thanks for your help!

채택된 답변

Nicole Peltier
Nicole Peltier 2018년 10월 1일
The function corr tests correlations between pairs of variables. You can actually test the correlations between several pairs of variables in one line of code if they are stored as columns in a matrix.
C = corr([M_sensor, M_sensor2, M_sensor3]);
Then C(1,2) will be the correlation between M_sensor and M_sensor2, C(1,3) will be the correlation between M_sensor1 and M_sensor3, and C(2,3) will be the correlation between M_sensor2 and M_sensor3.
Since these three variables all came from data_all, you will get the same results by using:
C = corr(data_all(:, 1:3));
I'd recommend checking out the documentation for corr so that you can see what types of correlation tests it can perform.
Hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Hypothesis Tests에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by