📄 integration_is_a_filter.m
字号:
%%
t = linspace(0,6,301);
randn('state',0)
acc = 10*randn(size(t));
vel = cumtrapz(t,acc);
pos = cumtrapz(t,vel);
subplot(3,1,1)
plot(t,acc)
title('Acceleration')
subplot(3,1,2)
plot(t,vel)
title('Speed')
subplot(3,1,3)
plot(t,pos)
title('Position')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -