Is it possible to predict N future values with rbfnn?
이전 댓글 표시
I need help with forecasting values using newrb. My input looks like that:
P1=zeros(6,500);
Start=101;
tau=9;
P1(1,:)=P(Start:Start+500-1);
Start=Start+tau;
P1(2,:)=P(Start:Start+500-1);
Start=Start+tau;
P1(3,:)=P(Start:Start+500-1);
Start=Start+tau;
P1(4,:)=P(Start:Start+500-1);
Start=Start+tau;
P1(5,:)=P(Start:Start+500-1);
Start=Start+tau;
P1(6,:)=P(Start:Start+500-1);
so
size(P) = [6 500]
and target
size(T) = [1 500].
Then I choose sum-squared error goal, spread constant and use newrb
net = newrb(P1,T,eg,sc,mn,df);
and
ytrain = net(P1);).
So my question is how to write the script that predicts the N values from my Data ??
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!