Hi I want to plot the transcendental equation for dielectric waveguide the equation for that is
이전 댓글 표시
tan(x)=sqrt(v^2-x^2)/x where v is 8.219. the hand made plot is in the figure I know the basics but still couldn't figure out. any help would be appreciated.
댓글 수: 4
guru
2014년 10월 31일
shalaka sitre
2018년 2월 13일
hi i want to plot a transcendental euqation for calculating the dielectric constant of the material .
[tan(B(DrD+le))/(Be*le)] = tanBe*le/Be*le
solve for Be*le
shalaka sitre
2018년 2월 13일
the values of B=1.41513 Dr=9.32 , D=9.22 ,le=1.6 solve for Be*le
Walter Roberson
2018년 2월 13일
The () are missing on the right side
채택된 답변
추가 답변 (1개)
guru
2014년 10월 31일
0 개 추천
댓글 수: 3
Star Strider
2014년 10월 31일
My pleasure!
The other plot is relatively straightforward, but I wanted to ask if ‘Item #2’ is supposed to be a function of x because as written it isn’t (it’s a constant), and simply produces a straight line:
d2 = 5E-6;
fv = @(x) [(22.2E+3)*sin((161E+4).*x).*(x<d2) + (42.32E+9)*exp(-2.896E+6)*(x>=d2)];
x = linspace(0,2*d2);
figure(2)
plot(x, fv(x))
grid
guru
2014년 10월 31일
Star Strider
2014년 10월 31일
In that instance, the function changes to:
fv = @(x) [(22.2E+3)*sin((161E+4).*x).*(x<d2) + (42.32E+9)*exp(-2.896E+6.*x).*(x>=d2)];
and the plot is:

카테고리
도움말 센터 및 File Exchange에서 Plot Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

