Effacer les filtres
Effacer les filtres

question about sinc function

1 vue (au cours des 30 derniers jours)
ADNAN KIRAL
ADNAN KIRAL le 2 Sep 2019
hi how can i get this figure ?
Capture.PNG
i have used the following eq.
Capture2.PNG
by coding the following type;
but it did not work can u please help me with that ? i cannot get negative values. thanks.
t=-511*0.005:0.01:512*0.005;
u_1=3/2*(110*sinc(110*pi*t)-60*sinc(60*pi*t));
  2 commentaires
Dimitris Kalogiros
Dimitris Kalogiros le 2 Sep 2019
Hi Adnan
What exactly do want to plot ?
A sync(t) function ? Or function u(t) which you gave ?
ADNAN KIRAL
ADNAN KIRAL le 2 Sep 2019

Connectez-vous pour commenter.

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Sep 2019
Modifié(e) : KALYAN ACHARJYA le 2 Sep 2019
t=-linspace(-511*0.005,512*0.005,1000)
u_t=3*(sin(2*55*pi*t)-sin(2*30*pi*t))./(2*pi*t);
plot(u_t);
  10 commentaires
Torsten
Torsten le 2 Sep 2019
This doesn't help since you still divide by 0 at t=0.
If you divide out, you get what I wrote in my answer.
KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Sep 2019
@Torsten OK sir, thanks for rectifying me. I will update it.
Gratitude!

Connectez-vous pour commenter.

Plus de réponses (1)

Torsten
Torsten le 2 Sep 2019
Modifié(e) : Torsten le 2 Sep 2019
t = -511*0.005:0.005:512*0.005;
u_1 = 3/2*(110*sinc(110*t)-60*sinc(60*t));
  1 commentaire
ADNAN KIRAL
ADNAN KIRAL le 2 Sep 2019
thanks for your reply.

Connectez-vous pour commenter.

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by