train a Recurrent Neural Network in MATLAB

Status
Not open for further replies.

deba21

Newbie level 2
Joined
Nov 10, 2012
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,291
Could you please guide me how to train a Recurrent Neural Network using Backpropagation.Could it be helpful in estimating the channel in communication?
 

Try to modify the code below:

Code:
P = [1 1 0 0 1 1 0 0 1 1 0 0;1 0 1 0 1 0 1 0 1 0 1 0];
T = [ 0 1 1 0  0 1 1 0 0 1 1 0];

net = newff(minmax(P),[2 1],{'tansig' 'purelin'},'trainlm');
[net tr]=train(net,P,T);

There might be other parameters you have to adjust. Try the 'help' function of Matlab.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…