How to pass the same function to different columns?
조회 수: 2 (최근 30일)
이전 댓글 표시
I would like to pass the same function to all the columns of an object.
I tried this code but it doesn't work
for j = 1:3
autocorr(VAR.res(:,j))
end
where basically I wanted to tell MATLAB "compute autocorrelation for all the 3 columns of VAR.res".
What did I do wrong?
Thanks
댓글 수: 2
Rik
2020년 4월 3일
That is not an internal Matlab function, unless you meant autocorr. Also, do you want to treat each call as totally separate, or do you want to correlate those columns in some way as well?
채택된 답변
Rik
2020년 4월 3일
You need to specify the target axes, otherwise the function will use gca for each call, so that will be the same axes.
figure(1),cfl(1)
n_cols=size(VAR.res,2);
for col = 1:n_cols
ax=subplot(1,n_cols,col);
autocorr(ax,VAR.res(:,col))
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!