I need to plot the radiation resistance
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I need to plot the radiation resistance dipole antenna 0 to 3 lambda ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1350099/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1350099/image.png)
4 Commenti
Walter Roberson
il 10 Apr 2023
@Ömer Uzuner comments,
Please I want to remove this question there is no correct answer here
Walter Roberson
il 10 Apr 2023
The contribution by @Oguz Kaan Hancioglu shows you what you need to do in order to get different y axes on each side, and thus appears to be a correct answer. If you do not believe the answer is correct, you should comment clarifying what you were looking for, instead of trying to delete the question.
Risposte (1)
Oguz Kaan Hancioglu
il 30 Mar 2023
You can use yyaxis to create these ype of figure.
x = linspace(0,10);
y = sin(3*x);
yyaxis left
plot(x,y)
z = sin(3*x).*exp(0.5*x);
yyaxis right
plot(x,z)
ylim([-150 150])
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!