Statistics
2 Questions
0 Answers
RANK
230,153
of 301,436
REPUTATION
0
CONTRIBUTIONS
2 Questions
0 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 21,278
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,540
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
I have a sinc pulse train corresponding to a given binary data and i added AWGN to it.Than at receiver I used a sinc matched filter.Now i want to sample the received wave so as to get the original data back.How can I sample the sinc pulse train.
t=-6:.001:6; p=0; w=0.5; x=[1 -1 1 -1 ]; for j=1:length(x) y=sinc(t-j)*x(j); %sinc pulse train p=p+y;%addition o...
10 years ago | 0 answers | 0
0
answersQuestion
how can I generate a sequence of sinc pulses corresponding to a given sequence.like for 1 plot positive sinc and for 0 plot negative but in sequence and on same plot
t=-5:.001:5; x = randsrc(1,200,[1,-1,; .5,.5]); n=length(x); w=0.5; p=sinc(2*w*t); q=-sinc(2*w*t); for i=1:n if x(i)=...
10 years ago | 1 answer | 0
