Introduction To Neural Network Toolbox in Matlab: Matlab Stands For Matrix Laboratory. Matlab 5.3.1 With Toolboxs
Introduction To Neural Network Toolbox in Matlab: Matlab Stands For Matrix Laboratory. Matlab 5.3.1 With Toolboxs
toolbox in Matlab
• If you will find an command prompt ‘>>’ and you have successfully entered matlab.
>>
Ask more information about
software
>> info
– contacting the company
• eg. Technique support, bugs.
>> ver
– version of matlab and its toolboxes
– licence number
>> whatsnew
– what’s new of the version
Function for programmer
for all
Start for 1
stockname = data(:,1);
1 2
2 4
training = data([1:100],:)
a=[1;2]; a*a’ => [1,2;2,4];
a=[1,2;2,4]; a.*a => [1,4;4,16];
1 4
4 16
Neural Network Creation and
Initialisation
>> p = [-0.5 1 -0.5 1; -1 0.5 -1 0.5; 0.5 1 0.5 1; -0.5 -1 -0.5 -1];
Network Training(cont’d)
>> p = [-0.5 1 -0.5 1; -1 0.5 -1 0.5; 0.5 1 0.5 1; -0.5 -1 -0.5 -1];
-0.5 1.00
-0.25 1.00
-1.00 0.25
For
Training -1.00 0.50 neuron 1
pattern 1
>> Y = sim(net,UT);
Performance Evaluation
Y = load(str);
Z = length(Y);