Create a long rectangular signal with a function handle
1 次查看(过去 30 天)
显示 更早的评论
I was wondering if there is a quick way to create a rectangular signal during 20 sec for example, with a function handle. I tried the following command which requires you to do it for every step.
Thanks.
u=@(t) double((0<=t & t<0.5) + ...
(1<=t & t<1.5) + ...
(2<=t & t<2.5)) .* 1;
0 个评论
采纳的回答
Bruno Luong
2022-4-20
编辑:Bruno Luong
2022-4-20
myfun = @(t) mod(t,1)<=0.5;
ezplot(myfun, 0, 20)
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!