gpt4 book ai didi

matlab - 绘制连续信号

转载 作者:行者123 更新时间:2023-12-04 15:27:07 26 4
gpt4 key购买 nike

我正在尝试按照以下图像准确打印连续信号:



下面是我的代码:

x=[0 0 0 1 1 1 1 1 1 -1 -1 0 0];
n=[6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 ];
subplot(2,2,2);
axis([min(n)-10,max(n)+10,min(x)-10,max(x)+10]);
plot(n,x);
grid on;
xlabel('Time');
ylabel('x2(t)');
title('Continous Signal');


但是输出图与预期不同:



是不是在MATLAB中我们无法正确显示连续信号?如果是,我需要在代码中进行哪些更改。

为什么信号值未通过直线连接-它会形成曲线(或倾斜的直线)?

最佳答案

您正在寻找stairs函数:

x = [0 0 0 1 1 1 1 1 1 -1 -1 0 0];
n = [-6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 ];

stairs(n,x);

关于matlab - 绘制连续信号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24869462/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com