Is it possible to predict N future values with rbfnn?
Show older comments
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 ??
Accepted Answer
More Answers (0)
Categories
Find more on Deep Learning Toolbox 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!