I need to plot the radiation resistance

조회 수: 6 (최근 30일)
Ömer Uzuner
Ömer Uzuner 2023년 3월 30일
댓글: Walter Roberson 2023년 4월 10일
I need to plot the radiation resistance dipole antenna 0 to 3 lambda
  댓글 수: 4
Walter Roberson
Walter Roberson 2023년 4월 10일
@Ömer Uzuner comments,
Please I want to remove this question there is no correct answer here
Walter Roberson
Walter Roberson 2023년 4월 10일
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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Oguz Kaan Hancioglu
Oguz Kaan Hancioglu 2023년 3월 30일
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])

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by