Error using corrplot on a matrix
Show older comments
Hello,
I am trying to apply correlation plot for a 45*45 matrix. But I am getting following error. Please find the matrix files attached in this thread and code below.
figure(1)
load('PSI_Test_1.mat');load('PSI_Test_2.mat');
subplot(2,2,1);corrplot(psi_result1);title('PSI_Test_1');
subplot(2,2,2);corrplot(psi_result11);title('PSI_Test_2');
% Error
% Not enough input arguments.
%
% Error in nanmean (line 7)
% N = sum(~isnan(x), dim);
%
% Error in corrplot (line 243)
% Mu = nanmean(X);
Accepted Answer
More Answers (0)
Categories
Find more on Data Distribution Plots 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!
