主要内容

ploterrcorr

绘制误差时间序列的自相关图

语法

ploterrcorr(错误)
ploterrcorr(错误、“outputIndex”outIdx)

描述

ploterrcorr(错误)取误差时间序列,并绘制不同滞后误差的自相关图。

ploterrcorr(错误、“outputIndex”outIdx)使用可选属性名称/值对来定义绘制哪个输出错误自相关。缺省值为1。

例子

绘制误差的自相关图

这里使用NARX网络来解决时间序列问题。

[X,T] = simplenarx_dataset;网= narxnet(1:2,20);

{

E = gsubtract(Ts,Y);ploterrcorr (E)

{

版本历史

在R2010b中引入