我在.txt文件中有一些值,我使用importdata命令将它们加载到Matlab中,如下所示:
A=importdata('Step_Response.txt');
t = A(1:end, 1);
y = A(1:end, 2);
我将如何进行清理,以便获得类似于线条的内容?
到目前为止,我已经尝试过这个:
b = 50;
coeff= ones(1, b)/b;
avg = filter(coeff, 1, y);
plot(t,[y avg])
这是正确的方法吗?我可以在最后获得更清晰的路线吗?