Hi I want to plot the transcendental equation for dielectric waveguide the equation for that is
Ältere Kommentare anzeigen
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 Kommentare
guru
am 31 Okt. 2014
shalaka sitre
am 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
am 13 Feb. 2018
the values of B=1.41513 Dr=9.32 , D=9.22 ,le=1.6 solve for Be*le
Walter Roberson
am 13 Feb. 2018
The () are missing on the right side
Akzeptierte Antwort
Weitere Antworten (1)
guru
am 31 Okt. 2014
0 Stimmen
3 Kommentare
Star Strider
am 31 Okt. 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
am 31 Okt. 2014
Star Strider
am 31 Okt. 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:

Kategorien
Mehr zu Plot Settings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

