%%%%%%%%%%%%%% Training file: rnn_gen_trn1.m %%%%%%%%%%%% %%% Date : September, 1, 1999 %%% %%% Author : Hossam Eldin Mostafa Abdelbaki %%% %%% Address : University of Central Florida, %%% %%% : School of Computer Science %%% %%% Email : ahossam@cs.ucf.edu %%% %%% Home Page : http://www.cs.ucf.edu/~ahossam/ %%% %%% Help : read the manual file (rnnsimve.pdf) %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% N_Patterns = 2; %Number of Patterns %####### Input Training Patterns ################ TRAIN_INPUT = [ -1 1 -1 -1 1 1 1 1 -1 1 -1 -1 1 1 ]; %###### Desired Output Patterns ################# TARGET = [ 1 0 0 1 ]; %Order of applying the patterns during the training process Z = 1:2;