Hi I want to plot the transcendental equation for dielectric waveguide the equation for that is
Afficher commentaires plus anciens
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 commentaires
guru
le 31 Oct 2014
shalaka sitre
le 13 Fév 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
le 13 Fév 2018
the values of B=1.41513 Dr=9.32 , D=9.22 ,le=1.6 solve for Be*le
Walter Roberson
le 13 Fév 2018
The () are missing on the right side
Réponse acceptée
Plus de réponses (1)
guru
le 31 Oct 2014
0 votes
3 commentaires
Star Strider
le 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
le 31 Oct 2014
Star Strider
le 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:

Catégories
En savoir plus sur Plot Settings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

