%%%****************** begin load_trn_file.m *********************%%% %%%%%%%%%%%%%%%%%%%%%%%%% Info %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% File Name : load_trn_file.m %%% %%% Type : m function file %%% %%% Parent : None %%% %%% External Calls : None %%% %%% Internal Calls : None %%% %%% 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 (rnnsimv2.pdf) %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function load_trn_file(File_Name) global N_Train_Patterns TRAIN_INPUT TARGET Z mess = sprintf(' Reading the training patterns from file ....( %s )',File_Name); disp(mess); FileName1 = etract_name(File_Name); eval(FileName1); %%%****************** end load_trn_file.m *********************%%%