How can I create a correlation graph

조회 수: 82 (최근 30일)
dj1du
dj1du 2022년 5월 30일
댓글: dj1du 2022년 5월 31일
Good evening!
I need to plot the correlation of a set of differently indexed vectors just like in the attached plot (I found it in a scientific publication).
By which Matlab command is it possible to create such a plot?
Thank you very much for your help!
  댓글 수: 2
Mathieu NOE
Mathieu NOE 2022년 5월 31일
hello
The following MATLAB® functions compute sample correlation coefficients and covariance. These sample coefficients are estimates of the true covariance and correlation coefficients of the population from which the data sample is drawn.
Function Description
corrcoef Correlation coefficient matrix
cov Covariance matrix
xcorr Cross-correlation sequence of a random process (includes autocorrelation)
The MATLAB function corrcoef produces a matrix of sample correlation coefficients for a data matrix (where each column represents a separate quantity). The correlation coefficients range from -1 to 1, where. Values close to 1 indicate that there is a positive linear relationship between the data columns.
dj1du
dj1du 2022년 5월 31일
편집: dj1du 2022년 5월 31일
Thank you very much for your answer! I don't want to be rude, but my question was rather pointed at how to create a plot like the attached one, when I already have some correlation values for each pair of vectors. I am looking for the Matlab command to create such a plot.

댓글을 달려면 로그인하십시오.

답변 (1개)

Chunru
Chunru 2022년 5월 31일
편집: Chunru 2022년 5월 31일
% data matrix
nv = 10; % number of variables
ns = 80; % number of samples
x = randn(ns, nv);
% Correlation coeff
r = corrcoef(x);
%imagesc(r);
imagesc(abs(r));
colorbar; axis xy
  댓글 수: 1
dj1du
dj1du 2022년 5월 31일
That's the command I was looking for, thank you very much!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by