Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top