我试图用matlab制作一个图,用X轴10 ^ x显示反射系数与负载电阻的关系。 我的代码如下:
x = 1:1000; %define x from 10^0 to 10^3
y = ((x-50)/(x+50)); % this is the reflection coefficient equation
semilogx (x,y); % make the x-axis to show 10^0, 10^1, 10^2, 10^3
不知怎的,我得到了正确的Y轴和X轴,但迹线没有显示。
我不知道我做错了什么部分。