Is there a way to change dividerand to divideblock in the Neural Time Series Toolbox?

5 views (last 30 days)
I would like to use the time series neural net to predict future stock market closing prices using the NAR algorithm. I have loaded all the data values using the GUI, but the default setting for the GUI is to randomly divide the data points into learning, testing, and validation. I would like the first 50% to be dedicated to learning, the next 25% to validation, and the last 25% to testing against real values. Is there any way I could do that with the GUI? I am not too familiar with Matlab, so I would like to do this through the GUI, but if that is not possible then I will have to explore other options.
  5 Comments
Walter Roberson
Walter Roberson on 5 Oct 2015
Change the variable name Sheet2_Table1_1 to the name of your time series data.
Then go down further and change the divide function and the ratios

Sign in to comment.

Accepted Answer

Greg Heath
Greg Heath on 8 Oct 2015
Using the command line:
net.divideFcn = 'divideblock';
Hope this helps.
Thank you for formally accepting my answer
Greg

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows 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!