Unable to see Graph

조회 수: 1 (최근 30일)
SARVESH AGRAWAL
SARVESH AGRAWAL 2017년 11월 1일
댓글: SARVESH AGRAWAL 2017년 11월 2일
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

채택된 답변

Eric
Eric 2017년 11월 1일
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
SARVESH AGRAWAL
SARVESH AGRAWAL 2017년 11월 2일
Thank you sir!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by