Main Content

이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.

ploterrcorr

오차 시계열의 자기상관 플로팅

구문

ploterrcorr(error)
ploterrcorr(errors,'outputIndex',outIdx)

설명

ploterrcorr(error)는 오차 시계열을 받아 다양한 지연값에 대해 오차의 자기상관을 플로팅합니다.

ploterrcorr(errors,'outputIndex',outIdx)는 선택적 속성 이름/값 쌍을 사용하여 어떤 출력 오차 자기상관이 플로팅되는지 정의합니다. 디폴트 값은 1입니다.

예제

오차의 자기상관 플로팅하기

NARX 신경망을 사용하여 시계열 문제를 풉니다.

[X,T] = simplenarx_dataset;
net = narxnet(1:2,20);
[Xs,Xi,Ai,Ts] = preparets(net,X,{},T);
net = train(net,Xs,Ts,Xi,Ai);

Figure Neural Network Training (29-Aug-2023 21:17:04) contains an object of type uigridlayout.

Y = net(Xs,Xi,Ai);
E = gsubtract(Ts,Y);
ploterrcorr(E)

Figure Error Autocorrelation (ploterrcorr) contains an axes object. The axes object with title Autocorrelation of Error 1, xlabel Lag, ylabel Correlation contains 4 objects of type bar, line. These objects represent Correlations, Zero Correlation, Confidence Limit.

버전 내역

R2010b에 개발됨