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.

Bandwidth of The Sinc Function

Status
Not open for further replies.

Mustaine

Member level 1
Joined
Mar 27, 2021
Messages
32
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Activity points
214
hello my friends currently i am studying the Problem-based learning communication Systems Using Matlab and Simulink by kwonge choi and huaping lıu.
First i transformed the sinc function i'm expecting to see a square function but the function i get is so much different than the square one but when i applied a dely to the sinc transformed function becomes square. Can you explain why is that
Also I'm having a problem about the bandwidth of the sinc function. When i transform the sinc function below i'm expecting to see a square wave which has a B bandwidth but no, the bandwidth is much bigger than B. Can you explain why is that. thanks
 

Attachments

  • Ekran Alıntısı.JPG
    Ekran Alıntısı.JPG
    75.9 KB · Views: 165
  • Ekran Alıntısı1.JPG
    Ekran Alıntısı1.JPG
    43.9 KB · Views: 168
  • Ekran Alıntısı2.JPG
    Ekran Alıntısı2.JPG
    47.7 KB · Views: 165

In the first case, half of the sinc signal is cut. The steep rise is causing the out-of-band components.
 

    Mustaine

    Points: 2
    Helpful Answer Positive Rating
In the first case, half of the sinc signal is cut. The steep rise is causing the out-of-band components.
thanks for your reply i get the issue on the first problem but still i do not get why the bandwidth is different from the B value.
 

hello my friends currently i am studying the Problem-based learning communication Systems Using Matlab and Simulink by kwonge choi and huaping lıu.
First i transformed the sinc function i'm expecting to see a square function but the function i get is so much different than the square one but when i applied a dely to the sinc transformed function becomes square. Can you explain why is that
Also I'm having a problem about the bandwidth of the sinc function. When i transform the sinc function below i'm expecting to see a square wave which has a B bandwidth but no, the bandwidth is much bigger than B. Can you explain why is that. thanks
It is all too easy to get mixed up with maths, tools and normalisation. If it is me I will do this:

B = 2000;
t = -.02:1/8192:.02;
h = 2*B*sinc(2*B*t); %cutoff = B/8192
freqz(h,1,-.5:.001:.5,1);

so I see your normalised cutoff is B/8192. i.e. If your sampling frequency is unity (=1).
 

It is all too easy to get mixed up with maths, tools and normalisation. If it is me I will do this:

B = 2000;
t = -.02:1/8192:.02;
h = 2*B*sinc(2*B*t); %cutoff = B/8192
freqz(h,1,-.5:.001:.5,1);

so I see your normalised cutoff is B/8192. i.e. If your sampling frequency is unity (=1).
i'm sorry but i didn't get your reply
magnitude must be 1 i guess but its 80 in the figure
 

Attachments

  • Ekran Alıntısı3.JPG
    Ekran Alıntısı3.JPG
    48.5 KB · Views: 146

i'm sorry but i didn't get your reply
magnitude must be 1 i guess but its 80 in the figure
That is another case of normalising response:

B = 2000;
t = -.02:1/8192:.02;
h = 2*B*sinc(2*B*t); %cutoff = B/8192
h = h/sum(h);
freqz(h,1,-.5:.001:.5,1);

you will get zero dB
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top