Unable to see Graph

1 vue (au cours des 30 derniers jours)
SARVESH AGRAWAL
SARVESH AGRAWAL le 1 Nov 2017
Hi,
Following is the code of sinc function which I am trying to plot. However, I do not see anything. Any help will be appreciated.
h=5;
lambda=h;
beta=2*pi/lambda;
for theta=0:0.01:2*pi
T=abs(sinc(beta*h*cos(theta)));
% T=sin(beta*h*cos(theta))/(beta*h*cos(theta));
polarplot(theta,T);
hold on;
end

Réponse acceptée

Eric
Eric le 1 Nov 2017
Instead of using a for loop, take advantage of matlab's ability to work with vectors (don't forget the element-wise period for T2):
h=5; lambda=h; beta=2*pi/lambda;
theta=0:0.01:2*pi;
T1=abs(sinc(beta.*h.*cos(theta)));
T2=sin(beta.*h.*cos(theta))./(beta.*h.*cos(theta));
polarplot(theta,T1);
hold on;
polarplot(theta,T2);
  1 commentaire
SARVESH AGRAWAL
SARVESH AGRAWAL le 2 Nov 2017
Thank you sir!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by