What is the use og data.mat file in this program, why that file is required from where are you getting the recognized value on the axis, how can i do it for english alphabet please help me as i am doing my final year project, send me the example code to my id sandeepec035@gmail.com
<a href=http://soundfrost.org/ >convert to mp3</a>
For English and number recognition [(A to E) and (1 to 5)]
charvec = handles.charvec;
selected_net = get(handles.editNN,'string');
selected_net = evalin('base',selected_net);
result = sim(selected_net,charvec);
[val, num] = max(result);
if num>5
num = num -5;
charvec = ['A','B','C','D','E'];
% In this case, output is character, defined as a number from num
else
charvec = [1, 2, 3, 4, 5];
% Else, output is number, defined from num
end
oknum = charvec(1,num);
set(handles.editResult, 'string',oknum);
copywrite to me...
Comment only