Hi I want to plot the transcendental equation for dielectric waveguide the equation for that is
Show older comments
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 Comments
guru
on 31 Oct 2014
shalaka sitre
on 13 Feb 2018
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
on 13 Feb 2018
the values of B=1.41513 Dr=9.32 , D=9.22 ,le=1.6 solve for Be*le
Walter Roberson
on 13 Feb 2018
The () are missing on the right side
Accepted Answer
More Answers (1)
guru
on 31 Oct 2014
0 votes
3 Comments
Star Strider
on 31 Oct 2014
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
on 31 Oct 2014
Star Strider
on 31 Oct 2014
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:

Categories
Find more on Plot Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
