Artificial Neural Network in Matlab Hany Ferdinando Neural
 
											Artificial Neural Network in Matlab Hany Ferdinando Neural Network in Matlab
 
											Architecture (single neuron) w is weight matrices, dimension 1 x. R p is input vector, dimension Rx 1 b is bias a = f(Wp + b) Neural Network in Matlab 2
 
											Transfer Function Neural Network in Matlab 3
 
											Architecture with neurons w is weight matrices, dimension Sx. R p is input vector, dimension Rxn b is bias Neural Network in Matlab 4
 
											Multiple layers Neural Network in Matlab 5
 
											Perceptrons in Matlab Make the perceptrons with net = newp(PR, S, TF, LF) PR = Rx 2 matrix of min and max values for R input elements S = number of output vector TF = Transfer function, default = ‘hardlim’, other option = ‘hardlims’ LF = Learning function, default = ‘learnp’, other option = ‘learnpn’ hardlim = hardlimit function hardlims = symetric hardlimit function learnp Dw = (t-a)p. T = ep. T learnpn normalized learnp Wnew = Wold + DW bnew = bold + e Neural Network in Matlab where e = t - a 6
 
											Compute manually… l This is an exercise how to run the artificial neural network l From the next problem, we will compute the weights and biases manually Neural Network in Matlab 7
![AND Gate in Perceptron P = [0 0 1 1; 0 1]; T = AND Gate in Perceptron P = [0 0 1 1; 0 1]; T =](http://slidetodoc.com/presentation_image/1eed0b5c9b0ab74047ca53697cd8bdbb/image-8.jpg) 
											AND Gate in Perceptron P = [0 0 1 1; 0 1]; T = [0 0 0 1]; net = newp([0 1; 0 1], 1); weight_init = net. IW{1, 1} bias_init = net. b{1} net. train. Param. epochs = 20; net = train(net, P, T); weight_final = net. IW{1, 1} bias_final = net. b{1} simulation = sim(net, P) weight_init = [0 0], bias_init = 0 weight_final = [2 1], bias_final = -3 Neural Network in Matlab 8
![OR Gate in Perceptron P = [0 0 1 1; 0 1]; T = OR Gate in Perceptron P = [0 0 1 1; 0 1]; T =](http://slidetodoc.com/presentation_image/1eed0b5c9b0ab74047ca53697cd8bdbb/image-9.jpg) 
											OR Gate in Perceptron P = [0 0 1 1; 0 1]; T = [0 1 1 1]; net = newp([0 1; 0 1], 1); weight_init = net. IW{1, 1} bias_init = net. b{1} net. train. Param. epochs = 20; net = train(net, P, T); weight_final = net. IW{1, 1} bias_final = net. b{1} simulation = sim(net, P) weight_init = [0 0], bias_init = 0 weight_final = [1 1], bias_final = -1 Neural Network in Matlab 9
![NAND Gate in Perceptron P = [0 0 1 1; 0 1]; T = NAND Gate in Perceptron P = [0 0 1 1; 0 1]; T =](http://slidetodoc.com/presentation_image/1eed0b5c9b0ab74047ca53697cd8bdbb/image-10.jpg) 
											NAND Gate in Perceptron P = [0 0 1 1; 0 1]; T = [1 1 1 0]; net = newp([0 1; 0 1], 1); weight_init = net. IW{1, 1} bias_init = net. b{1} net. train. Param. epochs = 20; net = train(net, P, T); weight_final = net. IW{1, 1} bias_final = net. b{1} simulation = sim(net, P) weight_init = [0 0], bias_init = 0 weight_final = [-2 -1], bias_final = 2 Neural Network in Matlab 10
![NOR Gate in Perceptron P = [0 0 1 1; 0 1]; T = NOR Gate in Perceptron P = [0 0 1 1; 0 1]; T =](http://slidetodoc.com/presentation_image/1eed0b5c9b0ab74047ca53697cd8bdbb/image-11.jpg) 
											NOR Gate in Perceptron P = [0 0 1 1; 0 1]; T = [1 0 0 0]; net = newp([0 1; 0 1], 1); weight_init = net. IW{1, 1} bias_init = net. b{1} net. train. Param. epochs = 20; net = train(net, P, T); weight_final = net. IW{1, 1} bias_final = net. b{1} simulation = sim(net, P) weight_init = [0 0], bias_init = 0 weight_final = [-1 -1], bias_final = 0 Neural Network in Matlab 11
 
											Backpropagation in Matlab Make the backpropagation with net = newff(PR, [S 1 S 2. . . SNl], {TF 1 TF 2. . . TFNl}, BTF, BLF, PF) PR = Rx 2 matrix of min and max values for R input elements S = number of output vector BTF = Transfer function (user can use any transfer functions) BLF = Learning function PF = performance xk+1 = xk - akgk Neural Network in Matlab 12
 
											Linear Filter (with ANN) in Matlab Make the Linear Filter with newlin(PR, S, ID, LR) PR = Rx 2 matrix of min and max values for R input elements S = number of output vector ID = delay LR = Learning Rate Transfer function for linear filter is only linear line (purelin) Neural Network in Matlab 13
- Slides: 13
