关于使用Matlab绘制反射系数的问题

时间:2018-06-12 02:01:09

标签: matlab

我试图用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轴,但迹线没有显示。

我不知道我做错了什么部分。

1 个答案:

答案 0 :(得分:0)

我假设你忘记了。并没有创建一个向量。 /是单个运算符./ divide用于每个元素。

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

enter image description here