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.

how training a square pulse to a neural network?

Status
Not open for further replies.

mahmoud92

Newbie level 2
Joined
Jan 22, 2015
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
10
when i am training a square wave to a neural network
,network reply response 111.JPG
figure 1 : response of training of network
figure 2: square pulse train

Code:
clear all
fs = 100000;
t = 0:1/fs:5;
x2 = square(2*pi*t);
net = newff([-1.5 1.5],[5,1],{'logsig','purelin'});
net= train(net,t,x2);
Y=net(x2);
subplot(211)
plot(t,Y)
axis([0 5 -1.2 1.2]);

subplot(212)
plot(t,x2);
 
Last edited by a moderator:

What is your question?

Any network response requires a transfer function or system response within the spectrum of the signal to get a neural response.
 

I want to the network's response will be same main function but is showed that net's training has a problem,if you implement code. but CODE is generated so has a problem
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top